aboutsummaryrefslogtreecommitdiffstats
path: root/apps/files_encryption/js
diff options
context:
space:
mode:
Diffstat (limited to 'apps/files_encryption/js')
-rw-r--r--apps/files_encryption/js/detect-migration.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/files_encryption/js/detect-migration.js b/apps/files_encryption/js/detect-migration.js
index 2cf6a61d145..e726515abc2 100644
--- a/apps/files_encryption/js/detect-migration.js
+++ b/apps/files_encryption/js/detect-migration.js
@@ -19,8 +19,8 @@ $(document).ready(function(){
success: function(response) {
if (response.data.migrationCompleted === false) {
var message = t('files_encryption', 'Initial encryption started... This can take some time. Please wait.');
- $('p[name="message"]').html('<img src="' + OC.imagePath('core', 'loading-dark-small.gif') + '"/> ' + message);
- $('p[name="message"]').removeClass('hidden').addClass('info');
+ $('p[id="message"]').html('<img src="' + OC.imagePath('core', 'loading-dark-small.gif') + '"/> ' + message);
+ $('p[id="message"]').removeClass('hidden').addClass('info');
}
}
});