mirror of
https://github.com/Nathanwoodburn/FireWallet.git
synced 2024-11-10 09:18:15 +11:00
Merge branch 'hotfix/passwordEscape' into develop
This commit is contained in:
commit
9a12b5d162
@ -839,6 +839,11 @@ namespace FireWallet
|
||||
|
||||
Account = comboBoxaccount.Text;
|
||||
Password = textBoxaccountpassword.Text;
|
||||
// Escape the password to allow use in JSON
|
||||
Password = Password.Replace("\\", "\\\\");
|
||||
Password = Password.Replace("\"", "\\\"");
|
||||
|
||||
|
||||
bool loggedin = await Login();
|
||||
if (loggedin)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user