From f8bbed282ebcf4ed2b9abe6076c2c19c8db2ad39 Mon Sep 17 00:00:00 2001 From: luk3yx Date: Tue, 28 Nov 2023 08:14:33 +1300 Subject: [PATCH] Don't use file download timeout for fetching ContentDB packages --- builtin/mainmenu/dlg_contentstore.lua | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/builtin/mainmenu/dlg_contentstore.lua b/builtin/mainmenu/dlg_contentstore.lua index c10b039f7..1e1e42cfc 100644 --- a/builtin/mainmenu/dlg_contentstore.lua +++ b/builtin/mainmenu/dlg_contentstore.lua @@ -562,8 +562,7 @@ function store.load() end end - local timeout = tonumber(core.settings:get("curl_file_download_timeout")) - local response = http.fetch_sync({ url = url, timeout = timeout }) + local response = http.fetch_sync({ url = url }) if not response.succeeded then return end