1
0

fix mind-crushingly dumb syntax error

This commit is contained in:
squidboi
2018-06-23 14:32:00 -07:00
parent f4990283de
commit c4038ede07
2 changed files with 7 additions and 7 deletions
+4 -4
View File
@@ -169,8 +169,8 @@ defmodule Pleroma.User do
end
def maybe_direct_follow(%User{} = follower, %User{info: info} = followed) do
user_config Application.get_env(:pleroma, :user)
deny_follow_blocked Keyword.get(user_config, :deny_follow_blocked)
user_config = Application.get_env(:pleroma, :user)
deny_follow_blocked = Keyword.get(user_config, :deny_follow_blocked)
user_info = user_info(followed)
@@ -210,8 +210,8 @@ defmodule Pleroma.User do
end
def follow(%User{} = follower, %User{info: info} = followed) do
user_config Application.get_env(:pleroma, :user)
deny_follow_blocked Keyword.get(user_config, :deny_follow_blocked)
user_config = Application.get_env(:pleroma, :user)
deny_follow_blocked = Keyword.get(user_config, :deny_follow_blocked)
ap_followers = followed.follower_address
+3 -3
View File
@@ -243,9 +243,9 @@ defmodule Pleroma.Web.ActivityPub.ActivityPub do
end
def block(blocker, blocked, activity_id \\ nil, local \\ true) do
ap_config Application.get_env(:pleroma, :activitypub)
unfollow_blocked Keyword.get(ap_config, :unfollow_blocked)
outgoing_blocks Keyword.get(ap_config, :outgoing_blocks)
ap_config = Application.get_env(:pleroma, :activitypub)
unfollow_blocked = Keyword.get(ap_config, :unfollow_blocked)
outgoing_blocks = Keyword.get(ap_config, :outgoing_blocks)
with true <- unfollow_blocked do
follow_activity = fetch_latest_follow(blocker, blocked)