mirror of
https://git.pleroma.social/sjw/pleroma.git
synced 2025-01-30 09:10:47 +01:00
Fix atom feed pagination.
This commit is contained in:
parent
2c1c221301
commit
46f63ea8af
@ -23,7 +23,10 @@ defmodule Pleroma.Web.OStatus.OStatusController do
|
||||
def feed(conn, %{"nickname" => nickname} = params) do
|
||||
user = User.get_cached_by_nickname(nickname)
|
||||
|
||||
activities = ActivityPub.fetch_public_activities(%{"whole_db" => true, "actor_id" => user.ap_id})
|
||||
query_params = Map.take(params, ["max_id"])
|
||||
|> Map.merge(%{"whole_db" => true, "actor_id" => user.ap_id})
|
||||
|
||||
activities = ActivityPub.fetch_public_activities(query_params)
|
||||
|> Enum.reverse
|
||||
|
||||
response = user
|
||||
|
Loading…
x
Reference in New Issue
Block a user