Skip to content

Commit

Permalink
fixup! feat(webcal): only update modified and deleted events from web…
Browse files Browse the repository at this point in the history
…cal calendars
  • Loading branch information
miaulalala committed Aug 13, 2024
1 parent d21929e commit c47650c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/dav/lib/CalDAV/WebcalCaching/RefreshWebcalService.php
Original file line number Diff line number Diff line change
Expand Up @@ -250,6 +250,6 @@ private function compareWithoutDtstamp(Component $vObject, array $calendarObject
unset($component->{'DTSTAMP'});
}

return md5($localVobject->serialize()) === md5($vObject->serialize());
return strcasecmp($localVobject->serialize(), $vObject->serialize()) === 0;
}
}

0 comments on commit c47650c

Please sign in to comment.