[Modify] Polish it

This commit is contained in:
sta 2021-08-30 20:12:04 +09:00
parent 9941505063
commit 835fdaeacb

View File

@ -914,11 +914,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 ();
}