From: lain Date: Wed, 10 Jun 2020 08:12:29 +0000 (+0000) Subject: Apply suggestion to lib/pleroma/web/controller_helper.ex X-Git-Url: https://git.squeep.com/?a=commitdiff_plain;h=b4c50be9df701dc9faf0a25f776f631d2175c99f;p=akkoma Apply suggestion to lib/pleroma/web/controller_helper.ex --- 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