Fix error in suggestions API due to typo (#17486)

Regression from #17479
th-downstream
Eugen Rochko 3 years ago committed by GitHub
parent a44cc7931a
commit b0021ca3d5

@ -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),

Loading…
Cancel
Save