]> source.dussan.org Git - nextcloud-server.git/commitdiff
Shortened notification message that was too long
authorVincent Petry <pvince81@owncloud.com>
Fri, 4 Oct 2013 09:11:24 +0000 (11:11 +0200)
committerVincent Petry <pvince81@owncloud.com>
Fri, 4 Oct 2013 09:11:24 +0000 (11:11 +0200)
The message for invalid private key was too long and didn't fit in the
notification box. This fix reduces the message to fit properly by
removing the extra information.

apps/files/js/files.js

index 55ee89e17a2e1b0f5bb30adca75b09590933b2e2..899bc6469e503a74bf8b99a2bc7381ca5e169878 100644 (file)
@@ -69,7 +69,7 @@ Files={
                        return;
                }
                if (initStatus === '1') { // encryption tried to init but failed
-                       OC.Notification.show(t('files_encryption', 'Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files.'));
+                       OC.Notification.showHtml(t('files_encryption', 'Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files.'));
                        return;
                }
                if (encryptedFiles === '1') {