From b9c9665f643b5d74470a4e27bf7cb9f50f694bef Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Sun, 26 Sep 2021 14:27:06 +0100 Subject: [PATCH] Add next field to replies collection --- posts.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/posts.py b/posts.py index 5796f5ac8..34acbdb97 100644 --- a/posts.py +++ b/posts.py @@ -1090,6 +1090,7 @@ def _createPostS2S(baseDir: str, nickname: str, domain: str, port: int, 'type': 'Collection', 'first': { 'type': 'CollectionPage', + 'next': idStr + '?only_other_accounts=true&page=true', 'partOf': idStr, 'items': [] } @@ -1153,6 +1154,7 @@ def _createPostC2S(baseDir: str, nickname: str, domain: str, port: int, 'type': 'Collection', 'first': { 'type': 'CollectionPage', + 'next': idStr + '?only_other_accounts=true&page=true', 'partOf': idStr, 'items': [] }