Activity search: Fix order of results

Greatly speeds up the search for RUM.
This commit is contained in:
lain 2020-11-19 13:20:58 +01:00
parent 6f9b03384f
commit 5e2ba57327
1 changed files with 4 additions and 1 deletions

View File

@ -27,7 +27,10 @@ defmodule Pleroma.Activity.Search do
|> maybe_restrict_local(user)
|> maybe_restrict_author(author)
|> maybe_restrict_blocked(user)
|> Pagination.fetch_paginated(%{"offset" => offset, "limit" => limit}, :offset)
|> Pagination.fetch_paginated(
%{"offset" => offset, "limit" => limit, "skip_order" => true},
:offset
)
|> maybe_fetch(user, search_query)
end