mirror of
https://github.com/luanti-org/luanti.git
synced 2025-06-27 16:36:03 +00:00
Fix broken httpfetch due to SimpleThread removal
This commit is contained in:
parent
c9ac9992c7
commit
54dbd78f90
1 changed files with 3 additions and 0 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue