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