forked from mirrors/bookwyrm
Fixes recipient list for following
This commit is contained in:
parent
1f2de18d42
commit
3681e79559
1 changed files with 3 additions and 3 deletions
|
@ -84,7 +84,7 @@ def handle_account_search(query):
|
||||||
def handle_follow(user, to_follow):
|
def handle_follow(user, to_follow):
|
||||||
''' someone local wants to follow someone '''
|
''' someone local wants to follow someone '''
|
||||||
activity = activitypub.get_follow_request(user, to_follow)
|
activity = activitypub.get_follow_request(user, to_follow)
|
||||||
broadcast(user, activity, [to_follow.inbox])
|
broadcast(user, activity, direct_recipients=[to_follow])
|
||||||
|
|
||||||
|
|
||||||
def handle_unfollow(user, to_unfollow):
|
def handle_unfollow(user, to_unfollow):
|
||||||
|
@ -94,7 +94,7 @@ def handle_unfollow(user, to_unfollow):
|
||||||
user_object=to_unfollow
|
user_object=to_unfollow
|
||||||
)
|
)
|
||||||
activity = activitypub.get_unfollow(relationship)
|
activity = activitypub.get_unfollow(relationship)
|
||||||
broadcast(user, activity, [to_unfollow.inbox])
|
broadcast(user, activity, direct_recipients=[to_unfollow])
|
||||||
to_unfollow.followers.remove(user)
|
to_unfollow.followers.remove(user)
|
||||||
|
|
||||||
|
|
||||||
|
@ -340,7 +340,7 @@ def handle_unfavorite(user, status):
|
||||||
return
|
return
|
||||||
|
|
||||||
fav_activity = activitypub.get_unfavorite(favorite)
|
fav_activity = activitypub.get_unfavorite(favorite)
|
||||||
broadcast(user, fav_activity, [status.user])
|
broadcast(user, fav_activity, direct_recipients=[status.user])
|
||||||
|
|
||||||
|
|
||||||
def handle_boost(user, status):
|
def handle_boost(user, status):
|
||||||
|
|
Loading…
Reference in a new issue