From ba166c373a05a0fdcc891ad6d946dab0b07dbaac Mon Sep 17 00:00:00 2001 From: antiduh Date: Tue, 8 Jul 2014 17:42:56 +0000 Subject: [PATCH] Fixed bug with the demo server not handling client disconnects correctly. --- TestServer/ServerForm.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/TestServer/ServerForm.cs b/TestServer/ServerForm.cs index 3d96b55..7985b4d 100644 --- a/TestServer/ServerForm.cs +++ b/TestServer/ServerForm.cs @@ -173,7 +173,7 @@ namespace TestServer private void server_Disconnected() { - this.running = false; + this.running = true; this.initializing = true; this.connected = false;