From 928e95af6e43134d5c82c32ad9240c3b475dbb79 Mon Sep 17 00:00:00 2001 From: RandomityGuy <31925790+RandomityGuy@users.noreply.github.com> Date: Sun, 28 May 2023 13:54:15 +0530 Subject: [PATCH] fix this??? --- src/Http.hx | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/Http.hx b/src/Http.hx index f0663c00..d33cdd3b 100644 --- a/src/Http.hx +++ b/src/Http.hx @@ -47,9 +47,13 @@ class Http { responses.add(() -> req.callback(b)); req.fulfilled = true; }; + #if !MACOS_BUNDLE hl.Gc.blocking(true); // Wtf is this shit + #end http.request(false); + #if !MACOS_BUNDLE hl.Gc.blocking(false); + #end } } #end