forked from AkkomaGang/akkoma
Don't specify order in results for now.
This commit is contained in:
parent
5d1f8dcd1c
commit
f039c9c19a
1 changed files with 1 additions and 2 deletions
|
@ -212,8 +212,7 @@ def search(user, %{"q" => query} = params) do
|
|||
where: fragment("?->>'type' = 'Create'", a.data),
|
||||
where: fragment("to_tsvector('english', ?->'object'->>'content') @@ plainto_tsquery('english', ?)", a.data, ^query),
|
||||
limit: ^limit,
|
||||
offset: ^offset,
|
||||
order_by: [desc: :id]
|
||||
offset: ^offset
|
||||
|
||||
activities = Repo.all(q)
|
||||
activities_to_statuses(activities, %{for: user})
|
||||
|
|
Loading…
Reference in a new issue