mirror of
https://github.com/nextcloud/server.git
synced 2026-06-09 00:32:29 -04:00
Merge pull request #22557 from nextcloud/bugfix/noid/group-share-failure
Do not fail if share for mountpoint is no longer available
This commit is contained in:
commit
be223d1e46
1 changed files with 1 additions and 1 deletions
2
apps/files_sharing/lib/External/Manager.php
vendored
2
apps/files_sharing/lib/External/Manager.php
vendored
|
|
@ -511,7 +511,7 @@ class Manager {
|
|||
WHERE `id` = ?
|
||||
');
|
||||
$result = (bool)$query->execute([(int)$share['id']]);
|
||||
} elseif ($result && (int)$share['share_type'] === IShare::TYPE_GROUP) {
|
||||
} elseif ($result && $share !== false && (int)$share['share_type'] === IShare::TYPE_GROUP) {
|
||||
$query = $this->connection->prepare('
|
||||
UPDATE `*PREFIX*share_external`
|
||||
SET `accepted` = ?
|
||||
|
|
|
|||
Loading…
Reference in a new issue