From 18c04d34a659ce2fa658e1180607eaa538cb57ae Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bar=C4=B1=C5=9F=20Soner=20U=C5=9Fakl=C4=B1?= Date: Thu, 5 Feb 2026 19:44:30 -0500 Subject: [PATCH] fix: remote post notifs missing bodyLong --- src/socket.io/helpers.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/socket.io/helpers.js b/src/socket.io/helpers.js index 9841c73578..844e2bd535 100644 --- a/src/socket.io/helpers.js +++ b/src/socket.io/helpers.js @@ -96,7 +96,7 @@ SocketHelpers.sendNotificationToPostOwner = async function (pid, fromuid, comman } fromuid = utils.isNumber(fromuid) ? parseInt(fromuid, 10) : fromuid; const [postData, fromCategory] = await Promise.all([ - posts.getPostFields(pid, ['tid', 'uid', 'content']), + posts.getPostFields(pid, ['tid', 'uid', 'content', 'sourceContent']), !utils.isNumber(fromuid) && categories.exists(fromuid), ]); const [canRead, isIgnoring] = await Promise.all([