Merge pull request #22904 from owncloud/get-user-groups-should-return-an-array

Make sure that the return value is an array
This commit is contained in:
Thomas Müller 2016-03-07 12:52:25 +01:00
commit 3b7a59f66b
1 changed files with 1 additions and 1 deletions

View File

@ -227,7 +227,7 @@ class Manager extends PublicEmitter implements IGroupManager {
*/
public function getUserGroups($user) {
if (is_null($user)) {
return false;
return [];
}
return $this->getUserIdGroups($user->getUID());
}