fix(translation): replace static error message

as suggested by @kesselb in nextcloud/server#25490

Signed-off-by: Samuel <faust64@gmail.com>
This commit is contained in:
Samuel 2021-02-05 12:06:35 +01:00 committed by backportbot[bot]
parent b2072cd6fc
commit 22ddcfa740
1 changed files with 3 additions and 2 deletions

View File

@ -530,7 +530,7 @@ class Manager implements IManager {
* Check for pre share requirements for user shares
*
* @param IShare $share
* @throws \Exception
* @throws GenericShareException
*/
protected function userCreateChecks(IShare $share) {
// Check if we can share with group members only
@ -543,7 +543,8 @@ class Manager implements IManager {
$this->groupManager->getUserGroupIds($sharedWith)
);
if (empty($groups)) {
throw new \Exception('Sharing is only allowed with group members');
$message_t = $this->l->t('Sharing is only allowed with group members');
throw new GenericShareException($message_t, $message_t, 404);
}
}