1
0
mirror of https://github.com/bitwarden/mobile synced 2025-12-21 10:43:22 +00:00

Use .json extension for encrypted json export (#1202)

This commit is contained in:
Matt Gibson
2020-12-31 10:58:58 -06:00
committed by GitHub
parent 3fc69f16d5
commit edb8dc58f7

View File

@@ -125,6 +125,8 @@ namespace Bit.App.Pages
{
var data = await _exportService.GetExport(FileFormatOptions[FileFormatSelectedIndex].Key);
var fileFormat = FileFormatOptions[FileFormatSelectedIndex].Key;
fileFormat = fileFormat == "encrypted_json" ? "json" : fileFormat;
_defaultFilename = _exportService.GetFileName(null, fileFormat);
_exportResult = Encoding.ASCII.GetBytes(data);