Fix incorrect message when no recent birthdays

Fixes #16
This commit is contained in:
Noi 2022-02-23 23:07:51 -08:00 committed by GitHub
parent 4325fdacf2
commit 75d3bf0216
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) if (resultCount == 0)
await reqChannel.SendMessageAsync( 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); .ConfigureAwait(false);
else else
await reqChannel.SendMessageAsync(output.ToString()).ConfigureAwait(false); await reqChannel.SendMessageAsync(output.ToString()).ConfigureAwait(false);