increase http timeout to give a bit more grace period

This commit is contained in:
Haze Weathers 2024-12-01 22:54:05 -05:00
parent 2e604bb5f6
commit b7b6ff64f3

View file

@ -41,7 +41,7 @@ func _ready() -> void:
http = HTTPRequest.new()
http.download_chunk_size = 4096
http.timeout = 10.0
http.timeout = 30.0
http.use_threads = true
http.connect("request_completed", self, "_on_request_completed")
add_child(http)