From 2c1eb674c901fe1bf59e69cb26d2f473f2b61c1f Mon Sep 17 00:00:00 2001
From: mat <26722564+matcool@users.noreply.github.com>
Date: Mon, 12 Feb 2024 00:04:56 -0300
Subject: [PATCH] add missing GEODE_DLL to web::fetchJSON

---
 loader/include/Geode/utils/web.hpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/loader/include/Geode/utils/web.hpp b/loader/include/Geode/utils/web.hpp
index 79b74f9f..d77fd31b 100644
--- a/loader/include/Geode/utils/web.hpp
+++ b/loader/include/Geode/utils/web.hpp
@@ -47,7 +47,7 @@ namespace geode::utils::web {
      * @param url URL to fetch
      * @returns Returned data as JSON, or error on error
      */
-    Result<matjson::Value> fetchJSON(std::string const& url);
+    GEODE_DLL Result<matjson::Value> fetchJSON(std::string const& url);
 
     class SentAsyncWebRequest;
     template <class T>