4b69
4b69
``` if (null === $currentToken || $currentToken < $operation['synctoken'] + 1) { // SyncToken in CalDAV perspective is consistently the next number of the last synced change event in this...
``` if (null === $currentToken || $currentToken < (int) $operation['synctoken'] + 1) { // SyncToken in CalDAV perspective is consistently the next number of the last synced change event in...
Using ``` ob_start(); var_dump($operation['synctoken']); $data = ob_get_clean(); $fp = fopen("/tmp/phpdbg.txt", "w"); fwrite($fp, $data); fclose($fp); ``` the output file contains: `string(4) "1076"`
I can add that radicale.service works if User=root. Currently investigating the cause...
``` if (null === $currentToken || $currentToken < $operation['synctoken'] + 1) { // SyncToken in CalDAV perspective is consistently the next number of the last synced change event in this...
``` if (null === $currentToken || $currentToken < (int) $operation['synctoken'] + 1) { // SyncToken in CalDAV perspective is consistently the next number of the last synced change event in...
Using ``` ob_start(); var_dump($operation['synctoken']); $data = ob_get_clean(); $fp = fopen("/tmp/phpdbg.txt", "w"); fwrite($fp, $data); fclose($fp); ``` the output file contains: `string(4) "1076"`