Skip to content

Commit fea3c0b

Browse files
committed
Replace CDN used for downloading plugin manifest
1 parent 8cacb4f commit fea3c0b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: 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)