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 1cf2f1b commit f64821eCopy full SHA for f64821e
Plugins/Flow.Launcher.Plugin.PluginsManager/Models/PluginsManifest.cs
@@ -15,7 +15,7 @@ internal async Task DownloadManifest()
15
{
16
try
17
18
- await using var jsonStream = await Http.GetStreamAsync("https://raw.githubusercontent.com/Flow-Launcher/Flow.Launcher.PluginsManifest/plugin_api_v2/plugins.json")
+ await using var jsonStream = await Http.GetStreamAsync("https://cdn.jsdelivr.net/gh/Flow-Launcher/Flow.Launcher.PluginsManifest/plugins.json")
19
.ConfigureAwait(false);
20
21
UserPlugins = await JsonSerializer.DeserializeAsync<List<UserPlugin>>(jsonStream).ConfigureAwait(false);
0 commit comments