diff options
author | Mario <mario@mariovavti.com> | 2020-02-24 10:02:09 +0100 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2020-02-24 10:02:09 +0100 |
commit | b36eb9a91cba1a6f3a53961f895665a0ae110b95 (patch) | |
tree | 3f2f031445c4f5cf1e97d548a9df335a12a98c5b /Zotlabs/Lib | |
parent | 7bb94f999350dfdc2c2cdf5b5d094ef52953edd6 (diff) | |
parent | 989fbe70cd566da4c5757527aa77022036af6274 (diff) | |
download | volse-hubzilla-b36eb9a91cba1a6f3a53961f895665a0ae110b95.tar.gz volse-hubzilla-b36eb9a91cba1a6f3a53961f895665a0ae110b95.tar.bz2 volse-hubzilla-b36eb9a91cba1a6f3a53961f895665a0ae110b95.zip |
Merge branch 'dev' into 'dev'
Implement DAV calendars sync with clones
See merge request hubzilla/core!1834
Diffstat (limited to 'Zotlabs/Lib')
-rw-r--r-- | Zotlabs/Lib/Libsync.php | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Zotlabs/Lib/Libsync.php b/Zotlabs/Lib/Libsync.php index d1756cf47..c39720735 100644 --- a/Zotlabs/Lib/Libsync.php +++ b/Zotlabs/Lib/Libsync.php @@ -246,7 +246,10 @@ class Libsync { sync_apps($channel,$arr['app']); if(array_key_exists('addressbook',$arr) && $arr['addressbook']) - sync_addressbook($channel,$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']); |