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