diff --git a/webcomponents/src/webcomponents/PluginDirectory.svelte b/webcomponents/src/webcomponents/PluginDirectory.svelte index bccac96..08598f2 100644 --- a/webcomponents/src/webcomponents/PluginDirectory.svelte +++ b/webcomponents/src/webcomponents/PluginDirectory.svelte @@ -40,7 +40,7 @@ let searched: FlowPlugin[] = []; let pluginPromise: Promise; function downloadPlugins() { - pluginPromise = fetch('https://cdn.jsdelivr.net/gh/Flow-Launcher/Flow.Launcher.PluginsManifest@plugin_api_v2/plugins.json') + pluginPromise = fetch('https://fastly.jsdelivr.net/gh/Flow-Launcher/Flow.Launcher.PluginsManifest@plugin_api_v2/plugins.json') .then(response => response.json() as unknown as FlowPlugin[]) .then(data => plugins = data.map((v, i) => { v.defaultIndex = i;