Let votes statuses are also searchable (#18070)

This commit is contained in:
Jeong Arm
2022-04-24 04:47:27 +09:00
committed by GitHub
parent 4884e0ca41
commit ea38327816
2 changed files with 7 additions and 0 deletions

View File

@ -145,11 +145,13 @@ class Status < ApplicationRecord
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)
ids += poll.votes.where(account: Account.local).pluck(:account_id) if poll.present?
else
ids += preloaded.mentions[id] || []
ids += preloaded.favourites[id] || []
ids += preloaded.reblogs[id] || []
ids += preloaded.bookmarks[id] || []
ids += preloaded.votes[id] || []
end
ids.uniq