Skip to content

Commit

Permalink
!fixup Updated zoom_calendar_item_update() to populate items that wer…
Browse files Browse the repository at this point in the history
…e not "deleted"
  • Loading branch information
jrchamp authored Mar 6, 2025
1 parent 1eeda11 commit 9e47262
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib.php
Original file line number Diff line number Diff line change
Expand Up @@ -512,7 +512,7 @@ function zoom_calendar_item_update(stdClass $zoom) {
} else if (!empty($zoom->occurrences)) {
foreach ($zoom->occurrences as $occurrence) {
$uuid = $occurrence->occurrence_id;
if ($occurrence->status != "deleted") {
if ($occurrence->status !== 'deleted') {
$newevents[$uuid] = zoom_populate_calender_item($zoom, $occurrence);
}
}
Expand Down

0 comments on commit 9e47262

Please sign in to comment.