From af3de363616b842c9dcccb5ba2c790c4bad597b7 Mon Sep 17 00:00:00 2001 From: Baptiste Grob <60621355+baptiste-grob@users.noreply.github.com> Date: Wed, 7 Apr 2021 13:13:54 +0200 Subject: [PATCH] fix: decrypted backup import file name --- app/assets/javascripts/services/archiveManager.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/assets/javascripts/services/archiveManager.ts b/app/assets/javascripts/services/archiveManager.ts index ab64038b1..c73e4b046 100644 --- a/app/assets/javascripts/services/archiveManager.ts +++ b/app/assets/javascripts/services/archiveManager.ts @@ -94,7 +94,7 @@ export class ArchiveManager { type: 'text/plain', }); const fileName = zippableTxtName( - 'Standard Notes Backup and Import File.txt' + 'Standard Notes Backup and Import File' ); zipWriter.add(fileName, new this.zip.BlobReader(blob), resolve); });