mirror of
https://github.com/nextcloud/server.git
synced 2026-06-12 10:10:49 -04:00
Merge pull request #6368 from nextcloud/backport-5436-fix-group-check
[stable12] Fix group check on share provider
This commit is contained in:
commit
ad96c58e8b
1 changed files with 1 additions and 1 deletions
|
|
@ -1117,7 +1117,7 @@ class DefaultShareProvider implements IShareProvider {
|
|||
$gid = $row['share_with'];
|
||||
$group = $this->groupManager->get($gid);
|
||||
|
||||
if ($gid === null) {
|
||||
if ($group === null) {
|
||||
continue;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue