Skip to content

Commit

Permalink
Merge pull request #91 from Flow-Launcher/replace-cdn
Browse files Browse the repository at this point in the history
Replace CDN used for downloading plugin manifest
  • Loading branch information
jjw24 authored Dec 12, 2024
2 parents 8cacb4f + fea3c0b commit 4ab0866
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion webcomponents/src/webcomponents/PluginDirectory.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ let searched: FlowPlugin[] = [];
let pluginPromise: Promise<FlowPlugin[]>;
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;
Expand Down

0 comments on commit 4ab0866

Please sign in to comment.