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/files_sharing/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/files_sharing/lib')
-rw-r--r-- | apps/files_sharing/lib/Activity/Providers/Groups.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files_sharing/lib/Activity/Providers/Groups.php b/apps/files_sharing/lib/Activity/Providers/Groups.php index 9a8f7164c55..10f52882aeb 100644 --- a/apps/files_sharing/lib/Activity/Providers/Groups.php +++ b/apps/files_sharing/lib/Activity/Providers/Groups.php @@ -150,7 +150,7 @@ class Groups extends Base { } return [ - 'type' => 'group', + 'type' => 'user-group', 'id' => $gid, 'name' => $this->groupDisplayNames[$gid], ]; |