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)!;