You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There is a small mixup in code for parsing the meeting status values in caldav.php.
Here is the corrected version:
// SYNC_POOMCAL_MEETINGSTATUS// Meetingstatus values// 0 = is not a meeting// 1 = is a meeting// 3 = Meeting received// 5 = Meeting is canceled// 7 = Meeting is canceled and received// 9 = as 1// 11 = as 3// 13 = as 5// 15 = as 7
case "STATUS":
switch ($property->Value())
{
case"TENTATIVE":
$message->meetingstatus = "3"; // was 1break;
case"CONFIRMED":
$message->meetingstatus = "1"; // was 3break;
case"CANCELLED":
$message->meetingstatus = "5"; // could also be 7break;
}
break;
The text was updated successfully, but these errors were encountered:
There is a small mixup in code for parsing the meeting status values in caldav.php.
Here is the corrected version:
The text was updated successfully, but these errors were encountered: