Add support for has:quote in search (#36217)

This commit is contained in:
Claire 2025-09-22 18:03:22 +02:00 committed by GitHub
parent dc808054d2
commit 64895e5f6d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -43,6 +43,7 @@ module Status::SearchConcern
properties << 'embed' if preview_card&.video? properties << 'embed' if preview_card&.video?
properties << 'sensitive' if sensitive? properties << 'sensitive' if sensitive?
properties << 'reply' if reply? properties << 'reply' if reply?
properties << 'quote' if with_quote?
end end
end end
end end