txlyre 11 月之前
父节点
当前提交
89f1b24d23
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2 2
      commands.py

+ 2 - 2
commands.py

@@ -492,7 +492,7 @@ async def sylvy_handler(bot, event, command):
   async with ClientSession() as session:
     try:
       async with session.post(
-        f'https://sylvy-engine.txlyre.website/api/compute',
+        'https://sylvy-engine.txlyre.website/api/compute',
         json={'program': command.args_string, 'stringify': True}
       ) as resp:       
         data = await resp.json()
@@ -551,7 +551,7 @@ async def sylvy_handler(bot, event, command):
     formatting_entities=[
       MessageEntityCode(
         offset=0,
-        length=len(text)
+        length=len(text.strip())
       )
     ]
   )