tangled
alpha
login
or
join now
ptr.pet
/
bsky-repost-likes
2
fork
atom
its for when you want to get like notifications for your reposts
2
fork
atom
overview
issues
pulls
pipelines
fix: dont check for targets when handling following event
ptr.pet
9 months ago
7dba1ada
28510a1e
verified
This commit was signed with the committer's
known signature
.
ptr.pet
SSH Key Fingerprint:
SHA256:Abmvag+juovVufZTxyWY8KcVgrznxvBjQpJesv071Aw=
+1
-1
1 changed file
expand all
collapse all
unified
split
server
main.go
+1
-1
server/main.go
reviewed
···
342
342
343
343
byDid := syntax.DID(event.Did)
344
344
ud, exists := userData.Get(byDid)
345
345
-
if !exists || ud.targets.Len() == 0 {
345
345
+
if !exists {
346
346
return nil
347
347
}
348
348