its for when you want to get like notifications for your reposts

fix: actually use already stored follows

ptr.pet a2d6dcc7 9024c18f

verified
+5
+5
server/main.go
··· 172 172 return 173 173 } 174 174 sd.ListenTo = make(Set[syntax.DID]) 175 + // use we have stored 176 + ud.follows.Range(func(rk syntax.RecordKey, f bsky.GraphFollow) bool { 177 + sd.ListenTo[syntax.DID(f.Subject)] = struct{}{} 178 + return true 179 + }) 175 180 if len(follows) > 0 { 176 181 // store cursor for later requests so we dont have to fetch the whole thing again 177 182 ud.followsCursor.Store((*string)(&follows[len(follows)-1].rkey))