txlyre 4 місяців тому
батько
коміт
e4a253a246
1 змінених файлів з 2 додано та 1 видалено
  1. 2 1
      commands.py

+ 2 - 1
commands.py

@@ -634,12 +634,13 @@ async def sylvy_handler(bot, event, command):
 
         for plot in result["plots"]:
             buffer = BytesIO()
+            buffer.name = "plot.png"
 
             svg2png(bytestring=plot, write_to=buffer)
 
             plots.append(buffer.getvalue())
 
-        await bot.send_file(event.peer_id, file=plots, reply_to=event)
+        await bot.send_file(event.peer_id, file=plots, reply_to=event, force_document=False)
 
         return