Skip to content
Snippets Groups Projects
Commit 5915840d authored by dnns01's avatar dnns01
Browse files

Fixed issue with color coding when reminder is 0

parent 8ac4ee08
No related branches found
No related tags found
No related merge requests found
......@@ -18,7 +18,7 @@ class AppointmentView(discord.ui.View):
return
else:
Attendee.create(appointment=appointment.id, member_id=interaction.user.id)
await interaction.message.edit(embed=appointment.get_embed(1 if appointment.reminder_sent else 0))
await interaction.message.edit(embed=appointment.get_embed(1 if appointment.reminder_sent and appointment.reminder > 0 else 0))
await interaction.response.defer(thinking=False)
......@@ -29,7 +29,7 @@ class AppointmentView(discord.ui.View):
if attendee:
attendee = attendee[0]
attendee.delete_instance()
await interaction.message.edit(embed=appointment.get_embed(1 if appointment.reminder_sent else 0))
await interaction.message.edit(embed=appointment.get_embed(1 if appointment.reminder_sent and appointment.reminder > 0 else 0))
else:
await interaction.response.send_message("Du kannst nur absagen, wenn du vorher zugesagt hast.",
ephemeral=True)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment