diff --git a/app/assets/javascripts/services/archiveManager.ts b/app/assets/javascripts/services/archiveManager.ts index 0ed5838e7..8915aaeb3 100644 --- a/app/assets/javascripts/services/archiveManager.ts +++ b/app/assets/javascripts/services/archiveManager.ts @@ -41,6 +41,9 @@ export class ArchiveManager { `Standard Notes Encrypted Backup and Import File - ${this.formattedDate()}.txt` ); } else { + /** Remove auth/keyParams as they won't be needed to decrypt the file */ + delete data.auth_params; + delete data.keyParams; /** download as zipped plain text files */ this.downloadZippedDecryptedItems(data); }