From b3b2dd051f3a20f791f2e93d1edf00520885cbf7 Mon Sep 17 00:00:00 2001 From: alemi Date: Wed, 20 Nov 2024 23:47:21 +0100 Subject: [PATCH] fix: collection page ids for context --- upub/routes/src/activitypub/object/context.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/upub/routes/src/activitypub/object/context.rs b/upub/routes/src/activitypub/object/context.rs index 377f70f..ed34eff 100644 --- a/upub/routes/src/activitypub/object/context.rs +++ b/upub/routes/src/activitypub/object/context.rs @@ -51,5 +51,5 @@ pub async fn page( .map(|item| item.ap()) .collect(); - crate::builders::collection_page(&id, offset, limit, items) + crate::builders::collection_page(&ctx.oid(&id), offset, limit, items) }