diff --git a/app/assets/javascripts/services/archiveManager.ts b/app/assets/javascripts/services/archiveManager.ts index 600d36c34..8d6b16a95 100644 --- a/app/assets/javascripts/services/archiveManager.ts +++ b/app/assets/javascripts/services/archiveManager.ts @@ -46,6 +46,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); } diff --git a/package.json b/package.json index cf8300d96..c32a05b9c 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "standard-notes-web", - "version": "3.5.15", + "version": "3.5.17", "license": "AGPL-3.0-or-later", "repository": { "type": "git",