From 8a0229a04d68fa656d7baf560777d9b39e134f85 Mon Sep 17 00:00:00 2001 From: alemi Date: Thu, 21 Nov 2024 00:05:04 +0100 Subject: [PATCH] fix: no needed a 4th fix --- 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 f83b449..4c15a8d 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(&upub::url!(ctx, "/objects/{id}/context"), offset, limit, items) + crate::builders::collection_page(&upub::url!(ctx, "/objects/{id}/context/page"), offset, limit, items) }