Skip to content

Commit

Permalink
fix bug causing a spam of network requests (#10119)
Browse files Browse the repository at this point in the history
  • Loading branch information
k-yle committed Apr 25, 2024
1 parent aa53bbf commit 010a812
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/core/file_fetcher.js
Expand Up @@ -67,7 +67,7 @@ export function coreFileFetcher() {
return getUrl(url.replace('{presets_version}', presetsVersion), which);
});
} else {
return getUrl(url);
return getUrl(url, which);
}
};

Expand Down

0 comments on commit 010a812

Please sign in to comment.