diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2022-02-08 22:23:04 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-08 22:23:04 +0100 |
commit | 2adcad04ff96fc8e7cb9aeefef1b22ea38e65457 (patch) | |
tree | f71747d681130fcdb62a20fcd28c8a149f1072c1 /app | |
parent | b6d7726ecbc833abd00f6a9d36b24d9776cfe623 (diff) |
Fix error in suggestions API due to typo (#17486)
Regression from #17479
Diffstat (limited to 'app')
-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 03ed1b6c2..7bca530d4 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(I18n.locale.to_str.split(/[_-]/).first) - [account.id] - skip_account_ids + account_ids = account_ids_for_locale(I18n.locale.to_s.split(/[_-]/).first) - [account.id] - skip_account_ids as_ordered_suggestions( scope(account).where(id: account_ids), |