Skip to content

Commit 9e3a0f6

Browse files
authored
Fix incorrect plugins.json branch name
1 parent 316783f commit 9e3a0f6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/getPluginsJson.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ let cachedData: ExtendedPlugin[] = [];
2323

2424
export async function getPluginsJson() {
2525
if (!cachedData?.length) {
26-
const data: FlowPlugin[] = await fetch("https://raw.githubusercontent.com/Flow-Launcher/Flow.Launcher.PluginsManifest/master/plugins.json").then(v => v.json());
26+
const data: FlowPlugin[] = await fetch("https://raw.githubusercontent.com/Flow-Launcher/Flow.Launcher.PluginsManifest/main/plugins.json").then(v => v.json());
2727
const plugins = await getCollection("plugins");
2828

2929
cachedData = data.map(v => {

0 commit comments

Comments
 (0)