From 3930b940e8d5ff9d115ad90988cd5064eefaecf7 Mon Sep 17 00:00:00 2001 From: mtuszowski Date: Thu, 19 Sep 2024 12:53:38 +0200 Subject: [PATCH] Fix --- voice_recognition.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/voice_recognition.py b/voice_recognition.py index a1afd80..48ebf6a 100644 --- a/voice_recognition.py +++ b/voice_recognition.py @@ -146,7 +146,7 @@ class Transcriber(commands.Cog): if not voice_client.is_connected(): logger.info("Connecting to voice") voice_client = await ctx.author.voice.channel.connect(cls=voice_recv.VoiceRecvClient) - voice_client.listen(self.wsink) + voice_client.listen(self.wsink) logger.info("Connected") @commands.command(name="stop_transcribe")