forked from AkkomaGang/akkoma
Pass user instead of their ap_id to User.block
This commit is contained in:
parent
3b706ea493
commit
a9141d88aa
1 changed files with 1 additions and 1 deletions
|
@ -266,7 +266,7 @@ def handle_incoming(
|
||||||
%User{} = blocker = User.get_or_fetch_by_ap_id(blocker),
|
%User{} = blocker = User.get_or_fetch_by_ap_id(blocker),
|
||||||
{:ok, activity} <- ActivityPub.block(blocker, blocked, false) do
|
{:ok, activity} <- ActivityPub.block(blocker, blocked, false) do
|
||||||
User.unfollow(blocker, blocked)
|
User.unfollow(blocker, blocked)
|
||||||
User.block(blocker, blocked.ap_id)
|
User.block(blocker, blocked)
|
||||||
{:ok, activity}
|
{:ok, activity}
|
||||||
else
|
else
|
||||||
e -> :error
|
e -> :error
|
||||||
|
|
Loading…
Reference in a new issue