From d451adafc4edf832216fb2df2d6a99982b5bb501 Mon Sep 17 00:00:00 2001 From: Julian Lam Date: Thu, 17 Oct 2024 14:36:34 -0400 Subject: [PATCH] fix: regression introduced by 903d03891941902ddac80b380552530e1853c306 --- src/activitypub/contexts.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/activitypub/contexts.js b/src/activitypub/contexts.js index fb53c686e3..9e308c61e9 100644 --- a/src/activitypub/contexts.js +++ b/src/activitypub/contexts.js @@ -80,7 +80,7 @@ Contexts.getItems = async (uid, id, options) => { } // Early breakout on empty collection - if (!chain.size) { + if (!next && !chain.size) { return []; }