Skip to content
Snippets Groups Projects
Commit 1e9dd6fb authored by kaniini's avatar kaniini
Browse files

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

parent 299ef74f
Branches bugfix/locked-account-regression
Tags
No related merge requests found
Pipeline #
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment