fix: decrypted backup import file name

This commit is contained in:
Baptiste Grob
2021-04-07 13:13:54 +02:00
parent a4e4381b0a
commit af3de36361

View File

@@ -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);
});