filter missing groups in share provider
Signed-off-by: Robin Appelman <robin@icewind.nl>
This commit is contained in:
parent
bd444c4951
commit
86c749349e
|
@ -74,7 +74,7 @@ class Manager extends PublicEmitter implements IGroupManager {
|
|||
private $cachedGroups = array();
|
||||
|
||||
/**
|
||||
* @var \OC\Group\Group[]
|
||||
* @var \OC\Group\Group[][]
|
||||
*/
|
||||
private $cachedUserGroups = array();
|
||||
|
||||
|
|
|
@ -743,6 +743,8 @@ class DefaultShareProvider implements IShareProvider {
|
|||
$qb->andWhere($qb->expr()->eq('file_source', $qb->createNamedParameter($node->getId())));
|
||||
}
|
||||
|
||||
|
||||
$groups = array_filter($groups, function($group) { return $group instanceof IGroup; });
|
||||
$groups = array_map(function(IGroup $group) { return $group->getGID(); }, $groups);
|
||||
|
||||
$qb->andWhere($qb->expr()->eq('share_type', $qb->createNamedParameter(\OCP\Share::SHARE_TYPE_GROUP)))
|
||||
|
|
Loading…
Reference in New Issue