Low-latency AT Protocol interaction indexer.
20

Configure Feed

Select the types of activity you want to include in your feed.

backlink: fix uri matching

Aly Raffauf (Jul 2, 2026, 9:05 PM EDT) 9c059b55 21bd54ca

+2 -4
+1
.gitignore
··· 1 1 .gocache/ 2 2 *.db 3 + *.db-journal
+1 -4
internal/backlink/extract.go
··· 36 36 } 37 37 38 38 func joinPath(base, key string) string { 39 - if base == "" { 40 - return key 41 - } 42 39 return base + "." + key 43 40 } 44 41 ··· 47 44 case map[string]any: 48 45 if target, targetCid, ok := tryStrongRef(v); ok { 49 46 link := base 50 - link.FieldPath = path 47 + link.FieldPath = joinPath(path, "uri") 51 48 link.Target = target 52 49 link.TargetCid = targetCid 53 50 return []Link{link}