mirror of
https://github.com/kikobar/mastodon.git
synced 2024-11-05 17:31:51 +00:00
Make bookmarks also searchable (#13271)
This commit is contained in:
parent
8758221e73
commit
8c42e0b53c
|
@ -142,10 +142,12 @@ class Status < ApplicationRecord
|
||||||
ids += mentions.where(account: Account.local).pluck(:account_id)
|
ids += mentions.where(account: Account.local).pluck(:account_id)
|
||||||
ids += favourites.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 += reblogs.where(account: Account.local).pluck(:account_id)
|
||||||
|
ids += bookmarks.where(account: Account.local).pluck(:account_id)
|
||||||
else
|
else
|
||||||
ids += preloaded.mentions[id] || []
|
ids += preloaded.mentions[id] || []
|
||||||
ids += preloaded.favourites[id] || []
|
ids += preloaded.favourites[id] || []
|
||||||
ids += preloaded.reblogs[id] || []
|
ids += preloaded.reblogs[id] || []
|
||||||
|
ids += preloaded.bookmarks[id] || []
|
||||||
end
|
end
|
||||||
|
|
||||||
ids.uniq
|
ids.uniq
|
||||||
|
|
Loading…
Reference in a new issue