Revert "fix search results sorted by id instead of by begins_on"

This reverts commit a133612d9f.
This commit is contained in:
Thomas Citharel 2021-01-14 11:39:01 +01:00
parent 2bdb8fd1fa
commit eb72248e16
No known key found for this signature in database
GPG Key ID: A061B9DDE0CA0773
1 changed files with 3 additions and 2 deletions

View File

@ -520,8 +520,7 @@ defmodule Mobilizon.Events do
|> events_for_tags(args)
|> events_for_location(args)
|> filter_local_or_from_followed_instances_events()
|> filter_public_visibility()
|> event_order_begins_on_asc()
|> order_by([q], asc: q.id)
|> Page.build_page(page, limit)
end
@ -1342,6 +1341,8 @@ defmodule Mobilizon.Events do
@spec events_for_search_query(String.t()) :: Ecto.Query.t()
defp events_for_search_query(search_string) do
Event
|> where([e], e.visibility == ^:public)
|> distinct([e], e.id)
|> do_event_for_search_query(search_string)
end