mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2024-11-19 09:50:15 +01:00
FIX: wallet duplicates (happens when opening deeplinks)
This commit is contained in:
parent
354a5828ca
commit
e3c44d13f8
@ -12,6 +12,11 @@ let A = require('./analytics');
|
||||
let BlueApp = new AppStorage();
|
||||
|
||||
async function startAndDecrypt(retry) {
|
||||
console.log('startAndDecrypt');
|
||||
if (BlueApp.getWallets().length > 0) {
|
||||
console.log('App already has some wallets, so we are in already started state, exiting startAndDecrypt');
|
||||
return;
|
||||
}
|
||||
let password = false;
|
||||
if (await BlueApp.storageIsEncrypted()) {
|
||||
do {
|
||||
|
Loading…
Reference in New Issue
Block a user