Fix bug where the playlists file doesn't reload when disconnecting from a server

When you connect to a server, the server sends its playlists down to the client. When we disconnect from the server, we reload the playlists so that our panels, and the game itself, presents the playlists that are on the clients disk. The reload never really happened as we checked if the call was not from the main thread, but since the large refactor several months ago, the call will always be issued from the main thread. I removed the dispatching code and made it only run on the client.
This commit is contained in:
Kawe Mazidjatari 2022-11-24 16:29:53 +01:00
parent 734e24b355
commit c62620ec6b

View File

@ -143,14 +143,12 @@ void NET_PrintFunc(const char* fmt, ...)
//-----------------------------------------------------------------------------
void NET_Shutdown(void* thisptr, const char* szReason, uint8_t bBadRep, bool bRemoveNow)
{
if (!ThreadInMainThread())
{
g_TaskScheduler->Dispatch([]()
{
// Re-load playlist from disk the next frame.
_DownloadPlaylists_f();
}, 0);
}
#ifndef DEDICATED
// Re-load playlist from the disk to replace the one we received from the server.
_DownloadPlaylists_f();
KeyValues::InitPlaylists();
#endif // !DEDICATED
v_NET_Shutdown(thisptr, szReason, bBadRep, bRemoveNow);
}