Let votes statuses are also searchable (#18070)
This commit is contained in:
parent
4884e0ca41
commit
ea38327816
2 changed files with 7 additions and 0 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue