From 2e6d0d66d11ec5488c40bc3549d83cd7daa6c4d4 Mon Sep 17 00:00:00 2001 From: Pakobbix Date: Fri, 15 Aug 2025 11:09:04 +0200 Subject: [PATCH] Fix formatting of debug message in on_message event --- discord_connector/open-webui_to_discord.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/discord_connector/open-webui_to_discord.py b/discord_connector/open-webui_to_discord.py index 0bcbd2e..8f98b40 100644 --- a/discord_connector/open-webui_to_discord.py +++ b/discord_connector/open-webui_to_discord.py @@ -101,7 +101,7 @@ async def on_message(message): if not ALLOW_DMS and isinstance(message.channel, discord.DMChannel): return # --- debugging --- - print(f"ℹ️ Message received in channel: {message.channel.id}") + print(f"ℹ️ Message received in channel: {message.channel.id}") print(f"📢 Whitelisted channels are: {WHITELIST_CHANNELS}") # -----------------------------