From 4e8949686ecafaee66d346eda33b46ef9da82da8 Mon Sep 17 00:00:00 2001 From: MathMan05 Date: Fri, 6 Feb 2026 18:36:33 -0600 Subject: [PATCH] have to include tags in the events --- src/api/routes/channels/#channel_id/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/api/routes/channels/#channel_id/index.ts b/src/api/routes/channels/#channel_id/index.ts index b7777511b..4da3cf093 100644 --- a/src/api/routes/channels/#channel_id/index.ts +++ b/src/api/routes/channels/#channel_id/index.ts @@ -150,7 +150,7 @@ router.patch( const { channel_id } = req.params as { [key: string]: string }; const channel = await Channel.findOneOrFail({ where: { id: channel_id }, - relations: payload.available_tags ? ["available_tags"] : [], + relations: ["available_tags"], }); if (channel.isThread()) {