diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2022-02-08 01:53:49 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-08 01:53:49 +0100 |
commit | 35850f8195b633c60215461ebde48d2e8725fbd2 (patch) | |
tree | 2ba5c513c0494443b3357d4293cdb35e48675a74 /app/models | |
parent | 52c1b86964caddb99e01ff36e928a524bf66ec0e (diff) |
Fix localization of cold-start follow recommendations (#17479)
Diffstat (limited to 'app/models')
-rw-r--r-- | app/models/account_suggestions/global_source.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/models/account_suggestions/global_source.rb b/app/models/account_suggestions/global_source.rb index ac764de50..03ed1b6c2 100644 --- a/app/models/account_suggestions/global_source.rb +++ b/app/models/account_suggestions/global_source.rb @@ -6,7 +6,7 @@ class AccountSuggestions::GlobalSource < AccountSuggestions::Source end def get(account, skip_account_ids: [], limit: 40) - account_ids = account_ids_for_locale(account.user_locale) - [account.id] - skip_account_ids + account_ids = account_ids_for_locale(I18n.locale.to_str.split(/[_-]/).first) - [account.id] - skip_account_ids as_ordered_suggestions( scope(account).where(id: account_ids), |