From 8766746a06918195183cd63505eb646d7ee9f830 Mon Sep 17 00:00:00 2001 From: Yusyuriv Date: Sun, 30 Mar 2025 19:02:42 +0600 Subject: [PATCH] fix: update fetch URL for plugins JSON to use raw GitHub content --- src/getPluginsJson.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/getPluginsJson.ts b/src/getPluginsJson.ts index bcff8bc..8b067df 100644 --- a/src/getPluginsJson.ts +++ b/src/getPluginsJson.ts @@ -23,7 +23,7 @@ let cachedData: ExtendedPlugin[] = []; export async function getPluginsJson() { if (!cachedData?.length) { - 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()); const plugins = await getCollection("plugins"); cachedData = data.map(v => {