Fix credo issues

This commit is contained in:
rinpatch 2019-07-31 14:20:34 +03:00
parent c88a5d3251
commit f42719506c
1 changed files with 1 additions and 1 deletions

View File

@ -741,7 +741,7 @@ defmodule Pleroma.User do
end
def update_follower_count(%User{} = user) do
unless user.local == false and Pleroma.Config.get([:instance, :external_user_synchronization]) do
unless !user.local and Pleroma.Config.get([:instance, :external_user_synchronization]) do
follower_count_query =
User.Query.build(%{followers: user, deactivated: false})
|> select([u], %{count: count(u.id)})