diff --git a/include/http.h b/include/http.h index 0937703a..e3c182dd 100644 --- a/include/http.h +++ b/include/http.h @@ -57,6 +57,7 @@ namespace Http curl_easy_setopt(curl, CURLOPT_WRITEDATA, &response); curl_easy_setopt(curl, CURLOPT_USERAGENT, fmt::format("Millennium/{}", MILLENNIUM_VERSION).c_str()); curl_easy_setopt(curl, CURLOPT_FOLLOWLOCATION, 1L); // Follow redirects + curl_easy_setopt(curl, CURLOPT_NOPROXY, "localhost,127.0.0.1,::1"); // Bypass proxy for localhost while (true) {