From f31cc8da5c52f36f7049e51bcfcf3204bd4d94c8 Mon Sep 17 00:00:00 2001 From: mctaylors Date: Wed, 1 Feb 2023 22:00:09 +0300 Subject: [PATCH] Update RemindCommand.cs --- Commands/RemindCommand.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Commands/RemindCommand.cs b/Commands/RemindCommand.cs index 30743c5..49b8a17 100644 --- a/Commands/RemindCommand.cs +++ b/Commands/RemindCommand.cs @@ -16,7 +16,7 @@ public sealed class RemindCommand : ICommand { ReminderText = reminderText, ReminderChannel = cmd.Context.Channel.Id }); - var feedback = string.Format(Messages.FeedbackReminderAdded, DateTimeOffset.Now.Add(remindIn).ToUnixTimeSeconds().ToString()); + var feedback = string.Format(Messages.FeedbackReminderAdded, DateTimeOffset.Now.Add(remindIn).ToUnixTimeSeconds()); cmd.Reply(feedback, ReplyEmojis.Success); cmd.Audit(feedback); }