Monorepo for Tangled tangled.org

appview: repo: fix compare url to work with pathescaped refs

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

Changed files
+4
appview
repo
+4
appview/repo/repo.go
··· 8 8 "io" 9 9 "log" 10 10 "net/http" 11 + "net/url" 11 12 "path" 12 13 "slices" 13 14 "sort" ··· 1308 1309 head = parts[1] 1309 1310 } 1310 1311 } 1312 + 1313 + base, _ = url.PathUnescape(base) 1314 + head, _ = url.PathUnescape(head) 1311 1315 1312 1316 if base == "" || head == "" { 1313 1317 log.Printf("invalid comparison")