We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b898c46 commit e63c4f3Copy full SHA for e63c4f3
Flow.Launcher.Core/ExternalPlugins/CommunityPluginSource.cs
@@ -73,6 +73,11 @@ public async Task<List<UserPlugin>> FetchAsync(CancellationToken token)
73
return null;
74
}
75
76
+ catch (OperationCanceledException)
77
+ {
78
+ API.LogInfo(ClassName, $"Fetching from {ManifestFileUrl} was cancelled. That is most likely OK.");
79
+ return null;
80
+ }
81
catch (Exception e)
82
{
83
if (e is HttpRequestException or WebException or SocketException || e.InnerException is TimeoutException)
0 commit comments