diff options
author | Roman Chvanikov <chvanikoff@pm.me> | 2020-05-09 11:59:49 +0300 |
---|---|---|
committer | Roman Chvanikov <chvanikoff@pm.me> | 2020-05-09 11:59:49 +0300 |
commit | 4f265397179e7286f27fafaf8365a0edc6972448 (patch) | |
tree | dbffb286cfa5b2a5aeaefcb677c8147cc48205d1 /lib | |
parent | 5c368b004b1a736836d4bc9f68c54714a33056cd (diff) | |
download | pleroma-4f265397179e7286f27fafaf8365a0edc6972448.tar.gz |
Fix credo warning
Diffstat (limited to 'lib')
-rw-r--r-- | lib/pleroma/counter_cache.ex | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/pleroma/counter_cache.ex b/lib/pleroma/counter_cache.ex index a940b5e50..aa6d38687 100644 --- a/lib/pleroma/counter_cache.ex +++ b/lib/pleroma/counter_cache.ex @@ -40,7 +40,7 @@ defmodule Pleroma.CounterCache do end end - def get_sum() do + def get_sum do CounterCache |> select([c], %{ "public" => sum(c.public), |