This commit is contained in:
fabjuuuh
2020-10-16 15:02:26 +02:00
parent e3c580c8c2
commit 173dbf2745
8 changed files with 47 additions and 16 deletions

View File

@@ -240,7 +240,7 @@ namespace DoctorApp.Utils
string hashPassword = Util.Hasher.HashString(password);
byte[] message = DataParser.getJsonMessage(DataParser.GetLoginJson(hashUser, hashPassword));
byte[] message = DataParser.getJsonMessage(DataParser.GetLoginJson(username, hashPassword));
this.stream.BeginWrite(message, 0, message.Length, new AsyncCallback(OnWrite), null);