fix timeout message

pull/11/head
Konstantine Tsafatinos 2023-07-21 17:32:19 -04:00
parent 82ea4d57c4
commit 5ca350d5c0
1 changed files with 2 additions and 2 deletions

View File

@ -223,10 +223,10 @@ class SkynetDiscordFrontend:
if not ipfs_hash: if not ipfs_hash:
msg_text += f'\n[{timestamp_pretty()}] **timeout processing request**' timeout_text = f'\n[{timestamp_pretty()}] **timeout processing request**'
embed = discord.Embed( embed = discord.Embed(
title='live updates', title='live updates',
description=msg_text, description=timeout_text,
color=discord.Color.blue()) color=discord.Color.blue())
await message.edit(embed=embed) await message.edit(embed=embed)