fixes
authorsquidboi <squidboi@waifu.club>
Sat, 9 Jun 2018 02:01:14 +0000 (19:01 -0700)
committersquidboi <squidboi@waifu.club>
Sat, 9 Jun 2018 02:01:14 +0000 (19:01 -0700)
lib/pleroma/user.ex
lib/pleroma/web/activity_pub/activity_pub.ex

index 649fe8f6d40d6c01909d047f3b49ba60e0e95b7e..5e309617203366de9332f5ece38f861b47259578 100644 (file)
@@ -169,7 +169,7 @@ defmodule Pleroma.User do
   end
 
   @user_config Application.get_env(:pleroma, :user)
-  @deny_follow_blocked Keyword.get(@ap_config, :deny_follow_blocked)
+  @deny_follow_blocked Keyword.get(@user_config, :deny_follow_blocked)
 
   def maybe_direct_follow(%User{} = follower, %User{info: info} = followed) do
     user_info = user_info(followed)
@@ -181,7 +181,7 @@ 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
@@ -201,7 +201,7 @@ defmodule Pleroma.User do
   end
 
   @user_config Application.get_env(:pleroma, :user)
-  @deny_follow_blocked Keyword.get(@ap_config, :deny_follow_blocked)
+  @deny_follow_blocked Keyword.get(@user_config, :deny_follow_blocked)
 
   def follow(%User{} = follower, %User{info: info} = followed) do
     ap_followers = followed.follower_address
@@ -210,7 +210,7 @@ defmodule Pleroma.User do
       following?(follower, followed) or info["deactivated"] ->
         {:error, "Could not follow user: #{followed.nickname} is already on your list."}
 
-      deny_follow_blocked and blocks?(followed, follower) ->
+      @deny_follow_blocked and blocks?(followed, follower) ->
         {:error, "Could not follow user: #{followed.nickname} blocked you."}
 
       true ->
index 2f7b12f973cbe75b93c5797d5fe2eda0db027716..1cf540f0ae73108e8091f8a1de5f4d902419dd7a 100644 (file)
@@ -246,14 +246,14 @@ defmodule Pleroma.Web.ActivityPub.ActivityPub do
 
   def block(blocker, blocked, activity_id \\ nil, local \\ true) do
 
-    with true <- unfollow_blocked do
+    with true <- @unfollow_blocked do
       follow_activity = fetch_latest_follow(blocker, blocked)
       if follow_activity do
         unfollow(blocker, blocked, nil, local)
       end
     end
 
-    with true <- outgoing_blocks do
+    with true <- @outgoing_blocks do
       with block_data <- make_block_data(blocker, blocked, activity_id),
            {:ok, activity} <- insert(block_data, local),
            :ok <- maybe_federate(activity) do