|
@@ -634,12 +634,13 @@ async def sylvy_handler(bot, event, command):
|
|
|
|
|
|
for plot in result["plots"]:
|
|
for plot in result["plots"]:
|
|
buffer = BytesIO()
|
|
buffer = BytesIO()
|
|
|
|
+ buffer.name = "plot.png"
|
|
|
|
|
|
svg2png(bytestring=plot, write_to=buffer)
|
|
svg2png(bytestring=plot, write_to=buffer)
|
|
|
|
|
|
plots.append(buffer.getvalue())
|
|
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
|
|
return
|
|
|
|
|