Rename hide_followers_count helper to hide_followers_count?

This commit is contained in:
Thibaut Girka
2018-12-28 18:39:24 +01:00
committed by ThibG
parent 374bae0abe
commit 115b1abb6e
3 changed files with 6 additions and 6 deletions

View File

@@ -60,7 +60,7 @@ module StreamEntriesHelper
end
end
def hide_followers_count(account)
def hide_followers_count?(account)
Setting.hide_followers_count || account.user&.setting_hide_followers_count
end
@@ -77,7 +77,7 @@ module StreamEntriesHelper
].join(' '),
]
unless hide_followers_count(account)
unless hide_followers_count?(account)
prepend_stats << [
number_to_human(account.followers_count, strip_insignificant_zeros: true),
I18n.t('accounts.followers', count: account.followers_count),