mirror of
https://github.com/yingziwu/mastodon.git
synced 2026-02-18 00:03:16 +00:00
Fix serialization of context pages (#37376)
This commit is contained in:
parent
ad4ba5aa00
commit
3013039720
3 changed files with 10 additions and 4 deletions
|
|
@ -36,9 +36,8 @@ class ActivityPub::ContextsController < ActivityPub::BaseController
|
|||
|
||||
def context_presenter
|
||||
first_page = ActivityPub::CollectionPresenter.new(
|
||||
id: items_context_url(@conversation, page_params),
|
||||
type: :unordered,
|
||||
part_of: items_context_url(@conversation),
|
||||
part_of: context_url(@conversation),
|
||||
next: next_page,
|
||||
items: @items.map { |status| status.local? ? ActivityPub::TagManager.instance.uri_for(status) : status.uri }
|
||||
)
|
||||
|
|
@ -52,7 +51,7 @@ class ActivityPub::ContextsController < ActivityPub::BaseController
|
|||
page = ActivityPub::CollectionPresenter.new(
|
||||
id: items_context_url(@conversation, page_params),
|
||||
type: :unordered,
|
||||
part_of: items_context_url(@conversation),
|
||||
part_of: context_url(@conversation),
|
||||
next: next_page,
|
||||
items: @items.map { |status| status.local? ? ActivityPub::TagManager.instance.uri_for(status) : status.uri }
|
||||
)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue