increase plugin manifest fetch timeout to 2m

This commit is contained in:
Ioannis G 2023-07-08 13:41:52 +03:00
parent 2d6b476685
commit df149fae8a
No known key found for this signature in database
GPG key ID: EAC0E4E5E36AC49E

View file

@ -17,7 +17,7 @@ namespace Flow.Launcher.Core.ExternalPlugins
private static readonly SemaphoreSlim manifestUpdateLock = new(1);
private static DateTime lastFetchedAt = DateTime.MinValue;
private static TimeSpan fetchTimeout = TimeSpan.FromSeconds(10);
private static TimeSpan fetchTimeout = TimeSpan.FromMinutes(2);
public static List<UserPlugin> UserPlugins { get; private set; }