Skip to content

Commit

Permalink
chore: set started_at when updating meeting
Browse files Browse the repository at this point in the history
  • Loading branch information
wagner-wutzke committed Feb 27, 2025
1 parent 4d8b25b commit 3557cfa
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -594,6 +594,7 @@ private MeetingEntity updateDataAndSave(MeetingUpdateDTO newDTO, MeetingEntity e
existing.setName(newDTO.getName());
existing.setLobbyEnabled(newDTO.isLobbyEnabled());
existing.setUpdatedAt(ZonedDateTime.now());
existing.setStartedAt(newDTO.getStartedAt());

// update recurrence data only for parent meeting, for children, we need to recreate them
if (existing.isRecurrentParent())
Expand Down

0 comments on commit 3557cfa

Please sign in to comment.