We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 8cacb4f + fea3c0b commit 4ab0866Copy full SHA for 4ab0866
webcomponents/src/webcomponents/PluginDirectory.svelte
@@ -40,7 +40,7 @@ let searched: FlowPlugin[] = [];
40
let pluginPromise: Promise<FlowPlugin[]>;
41
42
function downloadPlugins() {
43
- 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')
44
.then(response => response.json() as unknown as FlowPlugin[])
45
.then(data => plugins = data.map((v, i) => {
46
v.defaultIndex = i;
0 commit comments