Merge pull request #17 from NoiTheCat/NoiTheCat-patch-1

Fix incorrect message when no recent birthdays
This commit is contained in:
Noi 2022-02-23 23:10:31 -08:00 committed by GitHub
commit 4fc2d901f4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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);