Develop #10

Merged
SemvdH merged 229 commits from develop into master 2020-10-29 22:50:49 +00:00
2 changed files with 2 additions and 2 deletions
Showing only changes of commit 93eeea856f - Show all commits

View File

@@ -102,7 +102,7 @@ namespace DoctorApp.Utils
Debug.WriteLine($"login failed \"{responseStatus}\""); Debug.WriteLine($"login failed \"{responseStatus}\"");
} }
break; break;
/*case DataParser.START_SESSION: case DataParser.START_SESSION:
Console.WriteLine("Session started!"); Console.WriteLine("Session started!");
break; break;
case DataParser.STOP_SESSION: case DataParser.STOP_SESSION:

View File

@@ -59,7 +59,7 @@ namespace Server
internal void Disconnect(Client client) internal void Disconnect(Client client)
{ {
clients.Remove(client); clients.Remove(client);
doctor.sendMessage(DataParser.getDisconnectJson(client.username)); Doctor.sendMessage(DataParser.getDisconnectJson(client.username));
} }
public void NewLogin(Client client) public void NewLogin(Client client)