Browse Source
Fix groupExists when a backend provides group details
Signed-off-by: Robin Appelman <robin@icewind.nl>
pull/10006/head
Robin Appelman
7 years ago
No known key found for this signature in database
GPG Key ID: 42B69D8A64526EFB
1 changed files with
1 additions and
1 deletions
-
lib/private/Group/Manager.php
|
|
|
@ -183,7 +183,7 @@ class Manager extends PublicEmitter implements IGroupManager { |
|
|
|
foreach ($this->backends as $backend) { |
|
|
|
if ($backend->implementsActions(\OC\Group\Backend::GROUP_DETAILS)) { |
|
|
|
$groupData = $backend->getGroupDetails($gid); |
|
|
|
if (is_array($groupData)) { |
|
|
|
if (is_array($groupData) && !empty($groupData)) { |
|
|
|
// take the display name from the first backend that has a non-null one
|
|
|
|
if (is_null($displayName) && isset($groupData['displayName'])) { |
|
|
|
$displayName = $groupData['displayName']; |
|
|
|
|