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.
1 parent 49ac38d commit 634c3bdCopy full SHA for 634c3bd
src/download/fabricdownloader.js
@@ -21,7 +21,7 @@ const downloadFabric = (version, meta, callback) => {
21
if (existsSync(join(fabricDir, `${fabric}.json`))) downloadJar(version, meta, callback)
22
else {
23
var fabricInstallerUrl = 'https://meta.fabricmc.net/v2/versions/installer'
24
- if (version.overrides.fabric_installer_url) fabricInstallerUrl = version.overrides.fabric_installer_url
+ if (version.overrides && version.overrides.fabric_installer_url) fabricInstallerUrl = version.overrides.fabric_installer_url
25
fetch(fabricInstallerUrl).then(fabricInstallerResponse => {
26
if (fabricInstallerResponse) {
27
fabricInstallerResponse.json().then(fabricInstallerJson => {
0 commit comments