Set UDP receive thread to background
This commit is contained in:
@@ -134,12 +134,12 @@ namespace Discord.WebSockets.Voice
|
|||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
//This thread is required to establish a connection even if we're outgoing only
|
|
||||||
#if USE_THREAD
|
#if USE_THREAD
|
||||||
|
//This thread is required to establish a connection even if we're outgoing only
|
||||||
if ((_client.Config.VoiceMode & DiscordVoiceMode.Incoming) != 0)
|
if ((_client.Config.VoiceMode & DiscordVoiceMode.Incoming) != 0)
|
||||||
{
|
{
|
||||||
_receiveThread = new Thread(new ThreadStart(() => ReceiveVoiceAsync(_cancelToken)));
|
_receiveThread = new Thread(new ThreadStart(() => ReceiveVoiceAsync(_cancelToken)));
|
||||||
_sendThread.IsBackground = true;
|
_receiveThread.IsBackground = true;
|
||||||
_receiveThread.Start();
|
_receiveThread.Start();
|
||||||
}
|
}
|
||||||
else //Dont make an OS thread if we only want to capture one packet...
|
else //Dont make an OS thread if we only want to capture one packet...
|
||||||
|
|||||||
Reference in New Issue
Block a user