diff options
| author | luigi1111 <luigi1111w@gmail.com> | 2020-10-04 17:38:14 -0500 |
|---|---|---|
| committer | luigi1111 <luigi1111w@gmail.com> | 2020-10-04 17:38:14 -0500 |
| commit | cdfe9f338fdf46b301fd6eb627b13109fca561ff (patch) | |
| tree | 1c961643ffede90c03d962da8efb638d591bbbc4 /js | |
| parent | adb04cef71c0b0a7dbb53e120ccaa5c661dfa8fd (diff) | |
| parent | f5c5df7b677e10c78bddb2defa7b392bfe42696a (diff) | |
| download | monzero-gui-cdfe9f338fdf46b301fd6eb627b13109fca561ff.tar.gz monzero-gui-cdfe9f338fdf46b301fd6eb627b13109fca561ff.tar.xz monzero-gui-cdfe9f338fdf46b301fd6eb627b13109fca561ff.zip | |
Merge pull request #3025
f5c5df7 main: accountsDir runtime configuration support (xiphon)
Diffstat (limited to 'js')
| -rw-r--r-- | js/Wizard.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/js/Wizard.js b/js/Wizard.js index 054b13f7..52c43a84 100644 --- a/js/Wizard.js +++ b/js/Wizard.js @@ -65,7 +65,7 @@ function createWalletPath(isIOS, folder_path,account_name){ return folder_path + "/" + account_name + "/" + account_name } -function walletPathExists(directory, filename, isIOS, walletManager) { +function walletPathExists(accountsDir, directory, filename, isIOS, walletManager) { if(!filename || filename === "") return false; if(!directory || directory === "") return false; @@ -76,7 +76,7 @@ function walletPathExists(directory, filename, isIOS, walletManager) { directory += "/" if(isIOS) - var path = moneroAccountsDir + filename; + var path = accountsDir + filename; else var path = directory + filename + "/" + filename; |
