Skip to content

Commit

Permalink
Merge pull request Z-Hub#120 from matidau/as16-appointment
Browse files Browse the repository at this point in the history
As16 appointment
  • Loading branch information
matidau authored Nov 29, 2024
2 parents 7f29b07 + c8b8e43 commit f457cbc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/backend/caldav/caldav.php
Original file line number Diff line number Diff line change
Expand Up @@ -1295,7 +1295,7 @@ private function _ParseASEventToVEvent($data, $id, $tzid, $tzpar) {
break;
}
}
if (isset($data->reminder)) {
if (isset($data->reminder) && $data->reminder !== '') {
$valarm = new iCalComponent();
$valarm->SetType("VALARM");
$valarm->AddProperty("ACTION", "DISPLAY");
Expand Down
2 changes: 1 addition & 1 deletion src/lib/syncobjects/syncappointmentexception.php
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ function __construct() {
SYNC_AIRSYNCBASE_INSTANCEID => array ( self::STREAMER_VAR => "instanceid",
self::STREAMER_TYPE => self::STREAMER_TYPE_DATE,
self::STREAMER_CHECKS => [self::STREAMER_CHECK_REQUIRED => self::STREAMER_CHECK_SETONE],
self::STREAMER_RONOTIFY => true,
self::STREAMER_RONOTIFY => true),
);
}

Expand Down

0 comments on commit f457cbc

Please sign in to comment.