@@ -545,13 +545,14 @@ async def sylvy_handler(bot, event, command):
text += '\n'
text += result['output']
+ text = text.strip()
await event.reply(
text,
formatting_entities=[
MessageEntityCode(
offset=0,
- length=len(text.strip())
+ length=len(text.encode('utf-16')) // 2
)
]