Fix response when no reminders

This commit is contained in:
2021-04-18 23:59:05 +02:00
parent ea31731c8b
commit ef2eb33ea4

View File

@ -79,7 +79,7 @@ async def reminders(ctx):
value=f"{trigger_time.strftime('%Y-%m-%d %H:%M')} (in {the_final_countdown})", value=f"{trigger_time.strftime('%Y-%m-%d %H:%M')} (in {the_final_countdown})",
inline=False, inline=False,
) )
if len(embed) == 0: if len(embed) <= 76:
msg = f"{ctx.guild.name} has no reminders." msg = f"{ctx.guild.name} has no reminders."
await ctx.send(msg) await ctx.send(msg)
else: else: