Fix bug in reminders list
This commit is contained in:
parent
42992e76f8
commit
6f4d93a881
1 changed files with 1 additions and 1 deletions
|
@ -181,7 +181,7 @@ class RemindmeCog(Extension):
|
||||||
fields = []
|
fields = []
|
||||||
for reminder in reminders:
|
for reminder in reminders:
|
||||||
if reminder.private and isinstance(ctx.channel, GuildChannel):
|
if reminder.private and isinstance(ctx.channel, GuildChannel):
|
||||||
fields.embed(
|
fields.append(
|
||||||
EmbedField(
|
EmbedField(
|
||||||
name=f"<t:{int(reminder.remind_at.timestamp())}:F> (<t:{int(reminder.remind_at.timestamp())}:R>)",
|
name=f"<t:{int(reminder.remind_at.timestamp())}:F> (<t:{int(reminder.remind_at.timestamp())}:R>)",
|
||||||
value="Please DM me this command to view the content of this reminder",
|
value="Please DM me this command to view the content of this reminder",
|
||||||
|
|
Loading…
Add table
Reference in a new issue