From f19761682a09f6ab0b60e01f93fe9490f88bdd3f Mon Sep 17 00:00:00 2001 From: Julian Lam Date: Mon, 9 Mar 2026 13:00:15 -0400 Subject: [PATCH] fix: #14072, world to call thumbs with thumbsOnly filter --- src/controllers/activitypub/topics.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/controllers/activitypub/topics.js b/src/controllers/activitypub/topics.js index 22658ed2f2..6aaae596af 100644 --- a/src/controllers/activitypub/topics.js +++ b/src/controllers/activitypub/topics.js @@ -86,7 +86,7 @@ controller.list = async function (req, res) { posts.hasBookmarked(mainPids, req.uid), ]); - const thumbs = await topics.thumbs.load(topicData); + const thumbs = await topics.thumbs.load(topicData, { thumbsOnly: 1 }); const tidToThumbs = _.zipObject(uniqTids, thumbs); const teasers = await topics.getTeasers(postData.map(p => p.topic), { uid: req.uid }); postData.forEach((p, index) => {