A vibe coded tangled fork which supports pijul.

appview/repo: do not retry language detection

override the default indigo xrpc client here to use one without retry
logic.

Signed-off-by: oppiliappan <me@oppi.li>

authored by

oppiliappan and committed by tangled.org 36685bea 235f99c9

+4 -1
+4 -1
appview/repo/index.go
··· 164 164 165 165 if err != nil || langs == nil { 166 166 // non-fatal, fetch langs from ks via XRPC 167 - xrpcc := &indigoxrpc.Client{Host: rp.config.KnotMirror.Url} 167 + xrpcc := &indigoxrpc.Client{ 168 + Host: rp.config.KnotMirror.Url, 169 + Client: http.DefaultClient, 170 + } 168 171 ls, err := tangled.GitTempListLanguages(ctx, xrpcc, currentRef, repo.RepoAt().String()) 169 172 if err != nil { 170 173 return nil, fmt.Errorf("calling knotmirror git.listLanguages: %w", err)