Always unlock node after trying to create a share
Signed-off-by: Robin Appelman <robin@icewind.nl>
This commit is contained in:
parent
0d842e0550
commit
37eded7e7c
2 changed files with 4 additions and 2 deletions
|
@ -402,8 +402,10 @@ class Share20OCS extends OCSController {
|
|||
} catch (GenericShareException $e) {
|
||||
$code = $e->getCode() === 0 ? 403 : $e->getCode();
|
||||
throw new OCSException($e->getHint(), $code);
|
||||
}catch (\Exception $e) {
|
||||
} catch (\Exception $e) {
|
||||
throw new OCSForbiddenException($e->getMessage());
|
||||
} finally {
|
||||
$share->getNode()->unlock(ILockingProvider::LOCK_SHARED);
|
||||
}
|
||||
|
||||
$output = $this->formatShare($share);
|
||||
|
|
|
@ -160,7 +160,7 @@ class Share implements \OCP\Share\IShare {
|
|||
|
||||
$nodes = $userFolder->getById($this->fileId);
|
||||
if (empty($nodes)) {
|
||||
throw new NotFoundException();
|
||||
throw new NotFoundException('Node for share not found, fileid: ' . $this->fileId);
|
||||
}
|
||||
|
||||
$this->node = $nodes[0];
|
||||
|
|
Loading…
Reference in a new issue