mirror of
https://github.com/bookwyrm-social/bookwyrm.git
synced 2025-01-05 14:58:43 +00:00
Fixes bug in accepting unmanaged follow requests
This commit is contained in:
parent
8b0d349424
commit
1ec515034c
1 changed files with 1 additions and 2 deletions
|
@ -181,8 +181,7 @@ def handle_incoming_follow_accept(activity):
|
||||||
request.delete()
|
request.delete()
|
||||||
except models.UserFollowRequest.DoesNotExist:
|
except models.UserFollowRequest.DoesNotExist:
|
||||||
pass
|
pass
|
||||||
else:
|
accepter.followers.add(requester)
|
||||||
accepter.followers.add(requester)
|
|
||||||
return HttpResponse()
|
return HttpResponse()
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue