Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Pleroma
pleroma
Commits
1e9dd6fb
Commit
1e9dd6fb
authored
Jun 08, 2018
by
kaniini
Browse files
user: fix maybe_direct_follow() after user_info() refactoring broke it slightly
parent
299ef74f
Changes
1
Hide whitespace changes
Inline
Side-by-side
lib/pleroma/user.ex
View file @
1e9dd6fb
...
...
@@ -174,7 +174,7 @@ def maybe_direct_follow(%User{} = follower, %User{info: info} = followed) 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 @@ def maybe_direct_follow(%User{} = follower, %User{info: info} = followed) do
if
should_direct_follow
do
follow
(
follower
,
followed
)
else
follower
{
:ok
,
follower
}
end
end
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment