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

fix: dont remove actor data

ptr.pet cebff7b9 1e47dacb

verified
-4
-4
server/main.go
··· 124 124 func unmarkActorForLikes(sid string, did syntax.DID) { 125 125 if ud, exists := actorData.Get(did); exists { 126 126 ud.targets.Del(sid) 127 - // remove actor data if no subscribers are attached to it 128 - if ud.targets.Len() == 0 { 129 - actorData.Del(did) 130 - } 131 127 } 132 128 } 133 129