[Modify] Polish it

This commit is contained in:
sta 2021-06-30 20:08:07 +09:00
parent 6620690afe
commit 4ccfe0aa62

View File

@ -1038,11 +1038,13 @@ namespace WebSocketSharp.Server
}
catch (Exception ex) {
var msg = "The underlying listener has failed to start.";
throw new InvalidOperationException (msg, ex);
}
_receiveThread = new Thread (new ThreadStart (receiveRequest));
_receiveThread.IsBackground = true;
_receiveThread.Start ();
}