Make bookmarks also searchable (#13271)

lolsob-rspec
Jeong Arm 2020-03-21 11:14:10 +09:00 committed by GitHub
parent 577f74ad87
commit 3b4e54f359
1 changed files with 2 additions and 0 deletions

View File

@ -142,10 +142,12 @@ class Status < ApplicationRecord
ids += mentions.where(account: Account.local).pluck(:account_id)
ids += favourites.where(account: Account.local).pluck(:account_id)
ids += reblogs.where(account: Account.local).pluck(:account_id)
ids += bookmarks.where(account: Account.local).pluck(:account_id)
else
ids += preloaded.mentions[id] || []
ids += preloaded.favourites[id] || []
ids += preloaded.reblogs[id] || []
ids += preloaded.bookmarks[id] || []
end
ids.uniq