diff --git a/src/socket.io/posts.js b/src/socket.io/posts.js index 6df687ed14..27930e3824 100644 --- a/src/socket.io/posts.js +++ b/src/socket.io/posts.js @@ -91,7 +91,7 @@ SocketPosts.getPostSummaryByIndex = async function (socket, data) { throw new Error('[[error:no-privileges]]'); } - const postsData = await posts.getPostSummaryByPids([pid], socket.uid, { stripTags: true }); + const postsData = await posts.getPostSummaryByPids([pid], socket.uid, { stripTags: false }); return postsData[0]; };