fix: topic object in post editing data return

v1.18.x
Julian Lam 4 years ago
parent a4f3270fc5
commit 3c98cd3d95

@ -48,6 +48,7 @@ postsAPI.edit = async function (caller, data) {
}
const postObj = await posts.getPostSummaryByPids([editResult.post.pid], caller.uid, {});
const returnData = { ...postObj[0], ...editResult.post };
returnData.topic = { ...postObj[0].topic, ...editResult.post.topic };
if (!editResult.post.deleted) {
websockets.in('topic_' + editResult.topic.tid).emit('event:post_edited', editResult);

Loading…
Cancel
Save