Fix groupExists when a backend provides group details
Signed-off-by: Robin Appelman <robin@icewind.nl>
This commit is contained in:
parent
43f7ea5852
commit
605ba57086
|
@ -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'];
|
||||
|
|
Loading…
Reference in New Issue