|  | @@ -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
 | 
	
		
			
				|  |  |  
 |