Fix relationship caches being broken as result of a follow request (#12299)

lolsob-rspec
ThibG 2019-11-07 08:08:00 +01:00 committed by Eugen Rochko
parent 83a88426ca
commit e7c4a8681d
1 changed files with 1 additions and 1 deletions

View File

@ -6,7 +6,7 @@ class AccountRelationshipsPresenter
:endorsed
def initialize(account_ids, current_account_id, **options)
@account_ids = account_ids.map { |a| a.is_a?(Account) ? a.id : a }
@account_ids = account_ids.map { |a| a.is_a?(Account) ? a.id : a.to_i }
@current_account_id = current_account_id
@following = cached[:following].merge(Account.following_map(@uncached_account_ids, @current_account_id))