Compare commits

5 Commits

2 changed files with 6 additions and 1 deletions

View File

@@ -61,7 +61,7 @@ namespace FireWallet
notifyForm.Dispose(); notifyForm.Dispose();
this.Close(); this.Close();
} }
} } else this.Close();
} }
ParseTX(); ParseTX();
} }

View File

@@ -839,6 +839,11 @@ namespace FireWallet
Account = comboBoxaccount.Text; Account = comboBoxaccount.Text;
Password = textBoxaccountpassword.Text; Password = textBoxaccountpassword.Text;
// Escape the password to allow use in JSON
Password = Password.Replace("\\", "\\\\");
Password = Password.Replace("\"", "\\\"");
bool loggedin = await Login(); bool loggedin = await Login();
if (loggedin) if (loggedin)
{ {