aboutsummaryrefslogtreecommitdiff
path: root/main.py
diff options
context:
space:
mode:
Diffstat (limited to 'main.py')
-rw-r--r--main.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/main.py b/main.py
index 9823579..ad2747f 100644
--- a/main.py
+++ b/main.py
@@ -156,7 +156,7 @@ async def guest_middleware(handler, event, data):
location = None
if message.location:
location = message.location
- elif replied and replied.voice:
+ elif replied and replied.location:
location = replied.location
if voice:
@@ -167,6 +167,7 @@ async def guest_middleware(handler, event, data):
await g_answer(message, da)
else:
await message.reply(da)
+ return
buf = BytesIO()
try:
brat = await bot.download(voice, destination=buf)