This commit is contained in:
2015-10-20 23:26:44 +02:00
parent 28a410dac8
commit cdcf002b50
2 changed files with 3 additions and 2 deletions
@@ -141,7 +141,7 @@ namespace ErgometerApplication
throw new Exception("Comport was unable to disconnect"); throw new Exception("Comport was unable to disconnect");
} }
if (Doctor.Connected) if (Doctor != null && Doctor.Connected)
{ {
NetHelper.SendNetCommand(Doctor, new NetCommand(NetCommand.CommandType.LOGOUT, Session)); NetHelper.SendNetCommand(Doctor, new NetCommand(NetCommand.CommandType.LOGOUT, Session));
Loggedin = false; Loggedin = false;
@@ -185,7 +185,8 @@ namespace ErgometerApplication
} }
} }
Doctor.Close(); if(Doctor != null)
Doctor.Close();
} }
private static void ParseCommand(NetCommand command) private static void ParseCommand(NetCommand command)