Skip to content

Commit 4ab0866

Browse files
authored
Merge pull request #91 from Flow-Launcher/replace-cdn
Replace CDN used for downloading plugin manifest
2 parents 8cacb4f + fea3c0b commit 4ab0866

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

webcomponents/src/webcomponents/PluginDirectory.svelte

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ let searched: FlowPlugin[] = [];
4040
let pluginPromise: Promise<FlowPlugin[]>;
4141
4242
function downloadPlugins() {
43-
pluginPromise = fetch('https://cdn.jsdelivr.net/gh/Flow-Launcher/Flow.Launcher.PluginsManifest@plugin_api_v2/plugins.json')
43+
pluginPromise = fetch('https://fastly.jsdelivr.net/gh/Flow-Launcher/Flow.Launcher.PluginsManifest@plugin_api_v2/plugins.json')
4444
.then(response => response.json() as unknown as FlowPlugin[])
4545
.then(data => plugins = data.map((v, i) => {
4646
v.defaultIndex = i;

0 commit comments

Comments
 (0)