From a1cdacb4c6075bb806eae0e02d56c492f9d79b95 Mon Sep 17 00:00:00 2001 From: Yuri Becker Date: Tue, 23 Jan 2024 20:30:09 +0100 Subject: [PATCH] Fix compilation error --- backend/src/guild/moderation/channel/channel.controller.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/backend/src/guild/moderation/channel/channel.controller.ts b/backend/src/guild/moderation/channel/channel.controller.ts index 3a561e1..3d9908c 100644 --- a/backend/src/guild/moderation/channel/channel.controller.ts +++ b/backend/src/guild/moderation/channel/channel.controller.ts @@ -152,6 +152,7 @@ export class ChannelController { channel as GuildTextBasedChannel, (messages) => messages.last().createdTimestamp < before, (msg) => msg.deletable && msg.createdTimestamp > before, + this.logger, ); } else { throw new ChannelNotTextBasedException(channel.name);