diff options
author | lain <lain@soykaf.club> | 2018-05-26 15:20:21 +0200 |
---|---|---|
committer | lain <lain@soykaf.club> | 2018-05-26 15:20:21 +0200 |
commit | 6138b297836f459e4fe5d21dfed30ddd9397b6d4 (patch) | |
tree | e25ea36d4f9686ffc5b220de4297ce81bce4ecf9 /lib | |
parent | 745072b2cc0ce3be6e1896bcacffb5e48782f6da (diff) | |
download | pleroma-6138b297836f459e4fe5d21dfed30ddd9397b6d4.tar.gz |
There are no symbols in JSON.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/pleroma/user.ex | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/pleroma/user.ex b/lib/pleroma/user.ex index 75e173d0c..b1b935a0f 100644 --- a/lib/pleroma/user.ex +++ b/lib/pleroma/user.ex @@ -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 |