From ef2eb33ea40c84538a74de83b0d35e9644c93b0d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joakim=20Hells=C3=A9n?= Date: Sun, 18 Apr 2021 23:59:05 +0200 Subject: [PATCH] Fix response when no reminders --- main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.py b/main.py index 65bda5c..bc1e0b1 100644 --- a/main.py +++ b/main.py @@ -79,7 +79,7 @@ async def reminders(ctx): value=f"{trigger_time.strftime('%Y-%m-%d %H:%M')} (in {the_final_countdown})", inline=False, ) - if len(embed) == 0: + if len(embed) <= 76: msg = f"{ctx.guild.name} has no reminders." await ctx.send(msg) else: