This commit is contained in:
daru
2022-07-31 14:50:56 +02:00
parent db4ca8e4cf
commit 92660df667
4 changed files with 26 additions and 11 deletions

View File

@@ -432,9 +432,10 @@ func ReadAppointments() ([]Appointment, error) {
return err
}
appointment := Appointment{
Anime: animeId,
Time: date,
Users: appointmentUsers,
Anime: animeId,
Time: date,
Users: appointmentUsers,
Announced: false,
}
appoints = append(appoints, appointment)
}