1
0

Merge pull request #9076 from SomberNight/202405_android_config_pin

qml: "wallet_else_pin" auth should only use the wallet pw if is unified
This commit is contained in:
accumulator
2024-05-31 11:14:50 +02:00
committed by GitHub

View File

@@ -631,11 +631,12 @@ ApplicationWindow
console.log('auth using method ' + method)
if (method == 'wallet_else_pin') {
// if no wallet loaded, delegate to pin auth, else use wallet password auth
if (!Daemon.currentWallet) {
method = 'pin'
} else {
// if there is a loaded wallet and all wallets use the same password, use that
// else delegate to pin auth
if (Daemon.currentWallet && Daemon.singlePasswordEnabled) {
method = 'wallet'
} else {
method = 'pin'
}
}