Fix missing end brace

This commit is contained in:
Zachary Dunn 2019-03-18 14:05:10 +00:00
parent a2e03d4f3c
commit 5ba14c664b
1 changed files with 1 additions and 1 deletions

View File

@ -613,7 +613,7 @@ def handle_incoming(
) do
with true <- Pleroma.Config.get([:activitypub, :accept_blocks]),
%User{local: true} = blocked = User.get_cached_by_ap_id(blocked),
{:ok, %User{} = blocker = User.get_or_fetch_by_ap_id(blocker),
{:ok, %User{} = blocker} = User.get_or_fetch_by_ap_id(blocker),
{:ok, activity} <- ActivityPub.block(blocker, blocked, id, false) do
User.unfollow(blocker, blocked)
User.block(blocker, blocked)