added missing author to replies

This commit is contained in:
Lisa Marie Maginnis
2026-03-15 00:04:12 +01:00
committed by Rory&
parent 25e90df28d
commit f109db3536
@@ -265,7 +265,10 @@ router.get(
const message = await Message.findOneOrFail({
where: { id: message_id, channel_id },
relations: { attachments: true },
relations: {
attachments: true,
author: true,
},
});
const permissions = await getPermission(req.user_id, undefined, channel_id);