|
@@ -419,8 +419,15 @@ async def run_handler(bot, event, command):
|
|
|
f'https://farlands.txlyre.website/run/{command.args[0]}',
|
|
|
data=command.args_string[command.args_string.find(' ')+1:]
|
|
|
) as resp:
|
|
|
+ if resp.status in (404, 500):
|
|
|
+ info = await resp.json()
|
|
|
+
|
|
|
+ await event.reply(f'Произошла ошибка при попытке обращения к API… :(\n{info["detail"]}')
|
|
|
+
|
|
|
+ return
|
|
|
+
|
|
|
text = await resp.read()
|
|
|
- text = text.decode('UTF-8')
|
|
|
+ text = text.decode('UTF-8')[:4096]
|
|
|
except:
|
|
|
await event.reply('Произошла ошибка при попытке обращения к API… :(')
|
|
|
|
|
@@ -428,7 +435,7 @@ async def run_handler(bot, event, command):
|
|
|
|
|
|
text = remove_ansi_escapes(text).strip()
|
|
|
if not text:
|
|
|
- text = '<empty>'
|
|
|
+ text = '<пусто>'
|
|
|
|
|
|
await event.reply(f'```\n{text}```')
|
|
|
|
|
@@ -443,7 +450,7 @@ async def sylvy_handler(bot, event, command):
|
|
|
async with session.post(
|
|
|
f'https://sylvy-engine.txlyre.website/api/compute',
|
|
|
json={'program': command.args_string, 'stringify': True}
|
|
|
- ) as resp:
|
|
|
+ ) as resp:
|
|
|
data = await resp.json()
|
|
|
|
|
|
if data['status'] != 'ok':
|