Merge branch 'hotfix/passwordEscape'

This commit is contained in:
2023-08-18 14:07:49 +10:00

View File

@@ -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)
{