Skip to content

Commit

Permalink
Remote: Maybe 2s is a little short
Browse files Browse the repository at this point in the history
  • Loading branch information
suchmememanyskill committed Jun 10, 2024
1 parent 84819fa commit ad0abbd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion RemoteDownloaderPlugin/Plugin.cs
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ public async Task<bool> 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<Remote>(data)!;

Expand Down

0 comments on commit ad0abbd

Please sign in to comment.