mirror of
https://github.com/nextcloud/server.git
synced 2026-06-09 00:32:29 -04:00
Merge pull request #27847 from nextcloud/enh/26973/talk-password-failed
Update "Sending password by Nextcloud Talk failed" sentence
This commit is contained in:
commit
dad31ce3fa
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