Merge pull request #21181 from nextcloud/fix/remote-share-remove-error-handling
Do not only catch Exceptions but any Throwable during rmt share delete
This commit is contained in:
commit
111c8c9e0e
|
@ -520,7 +520,7 @@ class Manager {
|
||||||
if ($result && $share !== false && (int)$share['share_type'] === Share::SHARE_TYPE_USER) {
|
if ($result && $share !== false && (int)$share['share_type'] === Share::SHARE_TYPE_USER) {
|
||||||
try {
|
try {
|
||||||
$this->sendFeedbackToRemote($share['remote'], $share['share_token'], $share['remote_id'], 'decline');
|
$this->sendFeedbackToRemote($share['remote'], $share['share_token'], $share['remote_id'], 'decline');
|
||||||
} catch (\Exception $e) {
|
} catch (\Throwable $e) {
|
||||||
// if we fail to notify the remote (probably cause the remote is down)
|
// if we fail to notify the remote (probably cause the remote is down)
|
||||||
// we still want the share to be gone to prevent undeletable remotes
|
// we still want the share to be gone to prevent undeletable remotes
|
||||||
}
|
}
|
||||||
|
@ -630,7 +630,7 @@ class Manager {
|
||||||
}
|
}
|
||||||
|
|
||||||
$query = 'SELECT `id`, `remote`, `remote_id`, `share_token`, `name`, `owner`, `user`, `mountpoint`, `accepted`
|
$query = 'SELECT `id`, `remote`, `remote_id`, `share_token`, `name`, `owner`, `user`, `mountpoint`, `accepted`
|
||||||
FROM `*PREFIX*share_external`
|
FROM `*PREFIX*share_external`
|
||||||
WHERE (`user` = ? OR `user` IN (?))';
|
WHERE (`user` = ? OR `user` IN (?))';
|
||||||
$parameters = [$this->uid, implode(',',$userGroups)];
|
$parameters = [$this->uid, implode(',',$userGroups)];
|
||||||
if (!is_null($accepted)) {
|
if (!is_null($accepted)) {
|
||||||
|
|
Loading…
Reference in New Issue