Append ".json" extension to export filenames

Apparently not all SAF providers append a file extension based on the specified
MIME type.
This commit is contained in:
Alexander Bakker 2020-01-21 09:34:06 +01:00
parent 025c89d78c
commit d0108e9859

View file

@ -19,8 +19,8 @@ import java.util.TreeSet;
public class VaultManager {
private static final String FILENAME = "aegis.json";
public static final String FILENAME_EXPORT = "aegis_export";
public static final String FILENAME_EXPORT_PLAIN = "aegis_export_plain";
public static final String FILENAME_EXPORT = "aegis_export.json";
public static final String FILENAME_EXPORT_PLAIN = "aegis_export_plain.json";
private Vault _vault;
private VaultFile _file;