mirror of
https://git.pleroma.social/pleroma/pleroma.git
synced 2025-04-06 02:29:51 +00:00
cleanup
Signed-off-by: mkljczk <git@mkljczk.pl>
This commit is contained in:
parent
23adec42fd
commit
b9c4e6033c
2 changed files with 11 additions and 8 deletions
|
@ -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})
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue