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