We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents bde8742 + 8766746 commit 5901d59Copy full SHA for 5901d59
src/getPluginsJson.ts
@@ -23,7 +23,7 @@ let cachedData: ExtendedPlugin[] = [];
23
24
export async function getPluginsJson() {
25
if (!cachedData?.length) {
26
- const data: FlowPlugin[] = await fetch("https://fastly.jsdelivr.net/gh/Flow-Launcher/Flow.Launcher.PluginsManifest@plugin_api_v2/plugins.json").then(v => v.json());
+ const data: FlowPlugin[] = await fetch("https://raw.githubusercontent.com/Flow-Launcher/Flow.Launcher.PluginsManifest/plugin_api_v2/plugins.json").then(v => v.json());
27
const plugins = await getCollection("plugins");
28
29
cachedData = data.map(v => {
0 commit comments