Skip to content

Commit

Permalink
/reminder list: Tweak formatting for reminders without text
Browse files Browse the repository at this point in the history
  • Loading branch information
FloatingMilkshake committed Dec 14, 2024
1 parent 85fc76e commit 5cc6ef4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Commands/ReminderCommands.cs
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ reminderCmd is null
if (guildName != "DMs") reminderLocation += $" <#{reminder.ChannelId}>";

output += $"`{reminder.ReminderId}`:\n"
+ $"> {reminderText}\n"
+ (string.IsNullOrWhiteSpace(reminderText) ? "" : $"> {reminderText}\n")
+ (reminder.ReminderTime is null
? reminder.IsPrivate
? $"[Set <t:{setTime}:R>]({reminderLink}). This reminder will not be sent automatically."
Expand Down

0 comments on commit 5cc6ef4

Please sign in to comment.