1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-06 00:13:28 +00:00

Fix wrong file extension being set when exporting with attachments (#14067)

Co-authored-by: Daniel James Smith <djsmith85@users.noreply.github.com>
This commit is contained in:
Daniel James Smith
2025-03-31 17:06:27 +02:00
committed by GitHub
parent 15738f16ae
commit 7992e0247e

View File

@@ -126,7 +126,7 @@ export class IndividualVaultExportService
return {
type: "application/zip",
data: blobData,
fileName: ExportHelper.getFileName("", "json"),
fileName: ExportHelper.getFileName("", "zip"),
} as ExportedVaultAsBlob;
}