From 679fcb71a988310bd8ef6061c3366eb04d288109 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bar=C4=B1=C5=9F=20Soner=20U=C5=9Fakl=C4=B1?= Date: Wed, 22 Jan 2025 13:16:40 -0500 Subject: [PATCH] fix: #13067, add sourceContent to teasers required in posts.parse --- src/topics/teaser.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/topics/teaser.js b/src/topics/teaser.js index 20c46ff430..477d2891b8 100644 --- a/src/topics/teaser.js +++ b/src/topics/teaser.js @@ -43,7 +43,7 @@ module.exports = function (Topics) { }); const [allPostData, callerSettings] = await Promise.all([ - posts.getPostsFields(teaserPids, ['pid', 'uid', 'timestamp', 'tid', 'content']), + posts.getPostsFields(teaserPids, ['pid', 'uid', 'timestamp', 'tid', 'content', 'sourceContent']), user.getSettings(uid), ]); let postData = allPostData.filter(post => post && post.pid);