From 75d3bf02163e7e510186bbab130ffcec64da531a Mon Sep 17 00:00:00 2001 From: Noi Date: Wed, 23 Feb 2022 23:07:51 -0800 Subject: [PATCH] Fix incorrect message when no recent birthdays Fixes #16 --- UserInterface/ListingCommands.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/UserInterface/ListingCommands.cs b/UserInterface/ListingCommands.cs index 5b1f416..223172d 100644 --- a/UserInterface/ListingCommands.cs +++ b/UserInterface/ListingCommands.cs @@ -192,7 +192,7 @@ internal class ListingCommands : CommandsCommon { if (resultCount == 0) await reqChannel.SendMessageAsync( - "There are no recent or upcoming birthdays (within the last 7 days and/or next 21 days).") + "There are no recent or upcoming birthdays (within the last 7 days and/or next 14 days).") .ConfigureAwait(false); else await reqChannel.SendMessageAsync(output.ToString()).ConfigureAwait(false);