formatting

This commit is contained in:
squidboi 2018-06-09 04:28:11 +00:00
commit 4f9ecfc77a
3 changed files with 4 additions and 4 deletions

View file

@ -181,7 +181,8 @@ defmodule Pleroma.User do
false
# if the users are blocking each other, we shouldn't even be here, but check for it anyway
@deny_follow_blocked and (User.blocks?(follower, followed) or User.blocks?(followed, follower)) ->
@deny_follow_blocked and
(User.blocks?(follower, followed) or User.blocks?(followed, follower)) ->
false
# if OStatus, then there is no three-way handshake to follow

View file

@ -245,9 +245,9 @@ defmodule Pleroma.Web.ActivityPub.ActivityPub do
@outgoing_blocks Keyword.get(@ap_config, :outgoing_blocks)
def block(blocker, blocked, activity_id \\ nil, local \\ true) do
with true <- @unfollow_blocked do
follow_activity = fetch_latest_follow(blocker, blocked)
if follow_activity do
unfollow(blocker, blocked, nil, local)
end