add more manifest file fallback URLs

This commit is contained in:
Ioannis G 2023-07-05 00:01:13 +03:00
parent f7b585803d
commit 194dbabbde
No known key found for this signature in database
GPG key ID: EAC0E4E5E36AC49E

View file

@ -10,6 +10,8 @@ namespace Flow.Launcher.Core.ExternalPlugins
{
private static readonly CommunityPluginStore mainPluginStore =
new("https://raw.githubusercontent.com/Flow-Launcher/Flow.Launcher.PluginsManifest/plugin_api_v2/plugins.json",
"https://fastly.jsdelivr.net/gh/Flow-Launcher/Flow.Launcher.PluginsManifest@plugin_api_v2/plugins.json",
"https://gcore.jsdelivr.net/gh/Flow-Launcher/Flow.Launcher.PluginsManifest@plugin_api_v2/plugins.json",
"https://cdn.jsdelivr.net/gh/Flow-Launcher/Flow.Launcher.PluginsManifest@plugin_api_v2/plugins.json");
private static readonly SemaphoreSlim manifestUpdateLock = new(1);