1
0
mirror of https://github.com/bitwarden/mobile synced 2025-12-05 23:53:33 +00:00

Encode exports as UTF8 (#1404)

This commit is contained in:
Matt Gibson
2021-05-17 11:40:20 -05:00
committed by GitHub
parent 946831b37e
commit 0eebe6b156

View File

@@ -128,7 +128,7 @@ namespace Bit.App.Pages
fileFormat = fileFormat == "encrypted_json" ? "json" : fileFormat;
_defaultFilename = _exportService.GetFileName(null, fileFormat);
_exportResult = Encoding.ASCII.GetBytes(data);
_exportResult = Encoding.UTF8.GetBytes(data);
if (!_deviceActionService.SaveFile(_exportResult, null, _defaultFilename, null))
{