From 1dc5750ca3743e4169406fad0c3a2214a3461e66 Mon Sep 17 00:00:00 2001 From: gavrielc Date: Thu, 9 Apr 2026 12:24:06 +0300 Subject: [PATCH] fix: uncomment Discord import in channel barrel Discord was directly imported in src/index.ts before the barrel wiring. Moving to the barrel without uncommenting it broke Discord. Co-Authored-By: Claude Opus 4.6 (1M context) --- src/channels/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/channels/index.ts b/src/channels/index.ts index 4b3b125..f01c35a 100644 --- a/src/channels/index.ts +++ b/src/channels/index.ts @@ -2,7 +2,7 @@ // Each import triggers the channel module's registerChannelAdapter() call. // discord -// import './discord.js'; +import './discord.js'; // slack // import './slack.js';