mirror of
https://github.com/monero-project/monero-gui.git
synced 2024-11-17 00:07:51 +00:00
Merge pull request #2935
f1e3926
WizardWalletInput: disallow (back)slash (selsta)
This commit is contained in:
commit
f3ee46175c
1 changed files with 1 additions and 1 deletions
|
@ -64,7 +64,7 @@ GridLayout {
|
|||
Layout.fillWidth: true
|
||||
|
||||
function verify(){
|
||||
if(walletLocation === "") return false;
|
||||
if(walletLocation === "" || /[\\\/]/.test(walletName.text)) return false;
|
||||
|
||||
var exists = Wizard.walletPathExists(walletLocation.text, walletName.text, isIOS, walletManager);
|
||||
return !exists && walletLocation.error === false;
|
||||
|
|
Loading…
Reference in a new issue