revert(exception): keep throwing an exception for now
Signed-off-by: Samuel <faust64@gmail.com>
This commit is contained in:
parent
59e43b4828
commit
5f8dfa8e4c
|
@ -529,7 +529,7 @@ class Manager implements IManager {
|
|||
* Check for pre share requirements for user shares
|
||||
*
|
||||
* @param IShare $share
|
||||
* @throws GenericShareException
|
||||
* @throws \Exception
|
||||
*/
|
||||
protected function userCreateChecks(IShare $share) {
|
||||
// Check if we can share with group members only
|
||||
|
@ -543,7 +543,8 @@ class Manager implements IManager {
|
|||
);
|
||||
if (empty($groups)) {
|
||||
$message_t = $this->l->t('Sharing is only allowed with group members');
|
||||
throw new GenericShareException($message_t, $message_t, 404);
|
||||
// throw new GenericShareException($message_t, $message_t, 404);
|
||||
throw new \Exception($message_t);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue