mirror of
https://github.com/Nathanwoodburn/FireWallet.git
synced 2025-12-07 00:53:01 +11:00
Compare commits
5 Commits
8758a5fd5e
...
develop
| Author | SHA1 | Date | |
|---|---|---|---|
|
2560fa734c
|
|||
|
f99aa4996f
|
|||
|
aca91a863b
|
|||
|
9a12b5d162
|
|||
|
2a6a708d70
|
@@ -61,7 +61,7 @@ namespace FireWallet
|
||||
notifyForm.Dispose();
|
||||
this.Close();
|
||||
}
|
||||
}
|
||||
} else this.Close();
|
||||
}
|
||||
ParseTX();
|
||||
}
|
||||
|
||||
@@ -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)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user