diff options
author | Joas Schilling <coding@schilljs.com> | 2018-11-23 12:38:24 +0100 |
---|---|---|
committer | Joas Schilling <coding@schilljs.com> | 2018-11-23 12:39:02 +0100 |
commit | 99bcc1363ecf33736993d83ff24ae5374f0d0f9a (patch) | |
tree | d0fc5e4bb412a374489f6249e282f95f850672c3 /apps/dav/lib | |
parent | 695e60228d0a2441dcbb3b8512d9b9be4fbfd2d8 (diff) | |
download | nextcloud-server-99bcc1363ecf33736993d83ff24ae5374f0d0f9a.tar.gz nextcloud-server-99bcc1363ecf33736993d83ff24ae5374f0d0f9a.zip |
Fix wrong used type
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'apps/dav/lib')
-rw-r--r-- | apps/dav/lib/CalDAV/Activity/Provider/Base.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/dav/lib/CalDAV/Activity/Provider/Base.php b/apps/dav/lib/CalDAV/Activity/Provider/Base.php index 99ad903f247..ee9c6716130 100644 --- a/apps/dav/lib/CalDAV/Activity/Provider/Base.php +++ b/apps/dav/lib/CalDAV/Activity/Provider/Base.php @@ -160,7 +160,7 @@ abstract class Base implements IProvider { } return [ - 'type' => 'group', + 'type' => 'user-group', 'id' => $gid, 'name' => $this->groupDisplayNames[$gid], ]; |