mirror of
https://github.com/nextcloud/server.git
synced 2026-04-24 23:59:27 -04:00
Update "Sending password by Nextcloud Talk failed" sentence
Signed-off-by: szaimen <szaimen@e.mail.de>
This commit is contained in:
parent
e8fb7c7640
commit
0c27faf711
2 changed files with 2 additions and 2 deletions
|
|
@ -1161,7 +1161,7 @@ class ShareAPIController extends OCSController {
|
|||
|
||||
if ($sendPasswordByTalk === 'true') {
|
||||
if (!$this->appManager->isEnabledForUser('spreed')) {
|
||||
throw new OCSForbiddenException($this->l->t('Sharing sending the password by Nextcloud Talk failed because Nextcloud Talk is not enabled'));
|
||||
throw new OCSForbiddenException($this->l->t('"Sending the password by Nextcloud Talk" for sharing a file or folder failed because Nextcloud Talk is not enabled.'));
|
||||
}
|
||||
|
||||
$share->setSendPasswordByTalk(true);
|
||||
|
|
|
|||
|
|
@ -2967,7 +2967,7 @@ class ShareAPIControllerTest extends TestCase {
|
|||
|
||||
public function testUpdateLinkShareSendPasswordByTalkWithTalkDisabledDoesNotChangeOther() {
|
||||
$this->expectException(\OCP\AppFramework\OCS\OCSForbiddenException::class);
|
||||
$this->expectExceptionMessage('Sharing sending the password by Nextcloud Talk failed because Nextcloud Talk is not enabled');
|
||||
$this->expectExceptionMessage('"Sending the password by Nextcloud Talk" for sharing a file or folder failed because Nextcloud Talk is not enabled.');
|
||||
|
||||
$ocs = $this->mockFormatShare();
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue