Skip to content

Commit

Permalink
Merge pull request #26380 from nextcloud/backport/26372/stable19
Browse files Browse the repository at this point in the history
[stable19] gracefully handle deleteFromSelf when share is already gone
  • Loading branch information
rullzer authored Mar 31, 2021
2 parents e929afd + 85225cc commit dcfd2af
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
3 changes: 2 additions & 1 deletion lib/private/Share20/DefaultShareProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -470,7 +470,8 @@ public function deleteFromSelf(IShare $share, $recipient) {
}

if (!$group->inGroup($user)) {
throw new ProviderException('Recipient not in receiving group');
// nothing left to do
return;
}

// Try to fetch user specific share
Expand Down
3 changes: 0 additions & 3 deletions tests/lib/Share20/DefaultShareProviderTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -1575,9 +1575,6 @@ public function testDeleteFromSelfGroupAlreadyCustomShare() {


public function testDeleteFromSelfGroupUserNotInGroup() {
$this->expectException(\OC\Share20\Exception\ProviderException::class);
$this->expectExceptionMessage('Recipient not in receiving group');

$qb = $this->dbConn->getQueryBuilder();
$stmt = $qb->insert('share')
->values([
Expand Down

0 comments on commit dcfd2af

Please sign in to comment.