forked from AkkomaGang/akkoma
ControllerHelper: Fix wrong comparison.
This commit is contained in:
parent
b4c50be9df
commit
86fec45f40
1 changed files with 1 additions and 1 deletions
|
@ -75,7 +75,7 @@ defp build_pagination_fields(conn, min_id, max_id, extra_params) do
|
|||
# instead of the `q.id > ^min_id` and `q.id < ^max_id`.
|
||||
# This is because we only have ids present inside of the page, while
|
||||
# `min_id`, `since_id` and `max_id` requires to know one outside of it.
|
||||
if Map.take(conn.params, @id_keys) != %{} do
|
||||
if Map.take(conn.params, @id_keys) != [] do
|
||||
Map.put(fields, "id", current_url(conn, conn.params))
|
||||
else
|
||||
fields
|
||||
|
|
Loading…
Reference in a new issue