user: fix maybe_direct_follow() after user_info() refactoring broke it slightly

This commit is contained in:
William Pitcock 2018-06-08 02:47:07 +00:00
parent 299ef74f2e
commit 1e9dd6fbc2
1 changed files with 2 additions and 2 deletions

View File

@ -174,7 +174,7 @@ defmodule Pleroma.User do
should_direct_follow =
cond do
# if the account is locked, don't pre-create the relationship
user_info["locked"] == true ->
user_info[:locked] == true ->
false
# if the users are blocking each other, we shouldn't even be here, but check for it anyway
@ -193,7 +193,7 @@ defmodule Pleroma.User do
if should_direct_follow do
follow(follower, followed)
else
follower
{:ok, follower}
end
end