mirror of https://github.com/quasar/Quasar.git
Fixed Password not hashed when pressing 'Start listening'
This commit is contained in:
parent
ec7df970d0
commit
0ef438f7b4
|
@ -61,6 +61,10 @@ private void btnListen_Click(object sender, EventArgs e)
|
|||
return;
|
||||
}
|
||||
|
||||
var newPassword = txtPassword.Text;
|
||||
if (newPassword != Settings.Password)
|
||||
AES.PreHashKey(newPassword);
|
||||
|
||||
if (btnListen.Text == "Start listening" && !_listenServer.Listening)
|
||||
{
|
||||
try
|
||||
|
|
Loading…
Reference in New Issue