fix sparrow export file extension to be always mv.db

This commit is contained in:
Craig Raw 2022-11-28 12:59:30 +02:00
parent ff90a2c3e6
commit b25297e8b9

View file

@ -60,15 +60,7 @@ public class Sparrow implements WalletImport, WalletExport {
@Override
public String getExportFileExtension(Wallet wallet) {
try {
Storage storage = AppServices.get().getOpenWallets().get(wallet);
Wallet exportedWallet = !wallet.isMasterWallet() ? wallet.getMasterWallet() : wallet;
return !exportedWallet.getChildWallets().isEmpty() ? PersistenceType.DB.getExtension() : (storage.isEncrypted() ? "" : PersistenceType.JSON.getExtension());
} catch(IOException e) {
//ignore
}
return "";
return PersistenceType.DB.getExtension();
}
@Override