forked from Mirrorlandia_minetest/minetest
Fix broken httpfetch due to SimpleThread removal
This commit is contained in:
parent
c9ac9992c7
commit
54dbd78f90
@ -539,6 +539,7 @@ protected:
|
||||
|
||||
void * Thread()
|
||||
{
|
||||
ThreadStarted();
|
||||
log_register_thread("CurlFetchThread");
|
||||
DSTACK(__FUNCTION_NAME);
|
||||
|
||||
@ -651,6 +652,8 @@ void httpfetch_cleanup()
|
||||
void httpfetch_async(const HTTPFetchRequest &fetchrequest)
|
||||
{
|
||||
g_httpfetch_thread->requestFetch(fetchrequest);
|
||||
if (!g_httpfetch_thread->IsRunning())
|
||||
g_httpfetch_thread->Start();
|
||||
}
|
||||
|
||||
static void httpfetch_request_clear(unsigned long caller)
|
||||
|
Loading…
Reference in New Issue
Block a user