Signed-off-by: mkljczk <git@mkljczk.pl>
This commit is contained in:
mkljczk 2025-03-19 16:02:36 +01:00
parent 23adec42fd
commit b9c4e6033c
2 changed files with 11 additions and 8 deletions

View file

@ -715,13 +715,7 @@ defmodule Pleroma.Web.ActivityPub.Transmogrifier do
replies_collection = %{
"id" => object_id <> "/replies",
"type" => "Collection",
"first" => %{
"type" => "CollectionPage",
"partOf" => object_id <> "/replies",
"next" => object_id <> "/replies?only_other_accounts=true&page=true",
"items" => []
}
# object_id <> "/replies?page=true"
"first" => object_id <> "/replies?only_other_accounts=false&page=true"
}
Map.merge(object, %{"replies" => replies_collection})

View file

@ -50,7 +50,6 @@ defmodule Pleroma.Web.ActivityPub.ObjectView do
only_other_accounts: false,
iri: iri
})
|> Map.merge(%{"next" => iri <> "?only_other_accounts=true&page=true"})
|> Map.drop(["@context"])
}
|> Map.merge(Utils.make_json_ld_header())
@ -78,12 +77,22 @@ defmodule Pleroma.Web.ActivityPub.ObjectView do
activity.object.data["id"]
end)
next =
if !only_other_accounts do
%{
"next" => iri <> "?only_other_accounts=true&page=true"
}
else
%{}
end
%{
"id" => iri <> "?only_other_accounts=#{only_other_accounts}&page=true",
"type" => "CollectionPage",
"partOf" => iri,
"items" => collection
}
|> Map.merge(next)
|> Map.merge(Utils.make_json_ld_header())
end
end