txlyre 11 сар өмнө
parent
commit
799d6c5ab3
1 өөрчлөгдсөн 2 нэмэгдсэн , 1 устгасан
  1. 2 1
      commands.py

+ 2 - 1
commands.py

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