diff options
author | Max Kostikov <max@kostikov.co> | 2020-02-24 10:02:09 +0100 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2020-02-24 10:02:09 +0100 |
commit | 989fbe70cd566da4c5757527aa77022036af6274 (patch) | |
tree | 3f2f031445c4f5cf1e97d548a9df335a12a98c5b /include/zot.php | |
parent | 7bb94f999350dfdc2c2cdf5b5d094ef52953edd6 (diff) | |
download | volse-hubzilla-989fbe70cd566da4c5757527aa77022036af6274.tar.gz volse-hubzilla-989fbe70cd566da4c5757527aa77022036af6274.tar.bz2 volse-hubzilla-989fbe70cd566da4c5757527aa77022036af6274.zip |
Implement DAV calendars sync with clones
Diffstat (limited to 'include/zot.php')
-rw-r--r-- | include/zot.php | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/zot.php b/include/zot.php index c02dab162..5d5ac8424 100644 --- a/include/zot.php +++ b/include/zot.php @@ -3614,6 +3614,9 @@ function process_channel_sync_delivery($sender, $arr, $deliveries) { if(array_key_exists('addressbook',$arr) && $arr['addressbook']) sync_addressbook($channel,$arr['addressbook']); + if(array_key_exists('calendar',$arr) && $arr['calendar']) + sync_calendar($channel,$arr['calendar']); + if(array_key_exists('chatroom',$arr) && $arr['chatroom']) sync_chatrooms($channel,$arr['chatroom']); |