···124124func unmarkActorForLikes(sid string, did syntax.DID) {
125125 if ud, exists := actorData.Get(did); exists {
126126 ud.targets.Del(sid)
127127- // remove actor data if no subscribers are attached to it
128128- if ud.targets.Len() == 0 {
129129- actorData.Del(did)
130130- }
131127 }
132128}
133129