diff options
author | Joas Schilling <coding@schilljs.com> | 2019-09-09 14:32:11 +0200 |
---|---|---|
committer | Joas Schilling <coding@schilljs.com> | 2019-11-12 17:37:47 +0100 |
commit | e79ab7d0c565425c9d103930787f37c1ed3a9ed6 (patch) | |
tree | e3ac6c059047e8d760713079b975387b3a1532ad /apps | |
parent | 19e1892d507c52b36ec4f7e42cc1e0989158ef79 (diff) | |
download | nextcloud-server-e79ab7d0c565425c9d103930787f37c1ed3a9ed6.tar.gz nextcloud-server-e79ab7d0c565425c9d103930787f37c1ed3a9ed6.zip |
The share manager knows which provider can accept shares
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'apps')
-rw-r--r-- | apps/files_sharing/lib/Controller/ShareAPIController.php | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/apps/files_sharing/lib/Controller/ShareAPIController.php b/apps/files_sharing/lib/Controller/ShareAPIController.php index 9c5f6abee68..90a76e2223d 100644 --- a/apps/files_sharing/lib/Controller/ShareAPIController.php +++ b/apps/files_sharing/lib/Controller/ShareAPIController.php @@ -966,11 +966,6 @@ class ShareAPIController extends OCSController { throw new OCSNotFoundException($this->l->t('Wrong share ID, share doesn\'t exist')); } - if ($share->getShareType() !== IShare::TYPE_USER && - $share->getShareType() !== IShare::TYPE_GROUP) { - throw new OCSNotFoundException($this->l->t('Share type does not support accepting')); - } - try { $this->shareManager->acceptShare($share, $this->currentUser); } catch (GenericShareException $e) { |