summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorlain <lain@soykaf.club>2020-06-10 08:12:29 +0000
committerlain <lain@soykaf.club>2020-06-10 08:12:29 +0000
commitb4c50be9df701dc9faf0a25f776f631d2175c99f (patch)
tree039d0ddbcf02ff1093819918724f7c9d49d2133c
parentbe7c322865b2b7aa1c8c25147cc598b6362ab187 (diff)
Apply suggestion to lib/pleroma/web/controller_helper.ex
-rw-r--r--lib/pleroma/web/controller_helper.ex2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/pleroma/web/controller_helper.ex b/lib/pleroma/web/controller_helper.ex
index b7971e940..ab6e6c61a 100644
--- a/lib/pleroma/web/controller_helper.ex
+++ b/lib/pleroma/web/controller_helper.ex
@@ -75,7 +75,7 @@ defmodule Pleroma.Web.ControllerHelper 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, Pagination.page_keys() -- ["limit", "order"]) != [] do
+ if Map.take(conn.params, @id_keys) != %{} do
Map.put(fields, "id", current_url(conn, conn.params))
else
fields