From ad0abbd0856e4aa39f51e26ddeb099c81c0bdb31 Mon Sep 17 00:00:00 2001 From: suchmememanyskill <38142618+suchmememanyskill@users.noreply.github.com> Date: Mon, 10 Jun 2024 23:18:05 +0200 Subject: [PATCH] Remote: Maybe 2s is a little short --- RemoteDownloaderPlugin/Plugin.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/RemoteDownloaderPlugin/Plugin.cs b/RemoteDownloaderPlugin/Plugin.cs index 36a20e8..f4b282e 100644 --- a/RemoteDownloaderPlugin/Plugin.cs +++ b/RemoteDownloaderPlugin/Plugin.cs @@ -102,7 +102,7 @@ public async Task FetchRemote() try { using HttpClient client = new(); - client.Timeout = TimeSpan.FromSeconds(2); + client.Timeout = TimeSpan.FromSeconds(10); var data = await client.GetStringAsync(Storage.Data.IndexUrl); _cachedRemote = JsonConvert.DeserializeObject(data)!;