fix bug causing a spam of network requests (#10119)

This commit is contained in:
Kyℓe Hensel
2024-04-25 23:46:32 +10:00
committed by GitHub
parent aa53bbf550
commit 010a812eac

View File

@@ -67,7 +67,7 @@ export function coreFileFetcher() {
return getUrl(url.replace('{presets_version}', presetsVersion), which);
});
} else {
return getUrl(url);
return getUrl(url, which);
}
};