diff --git a/bootstrap/index.js b/bootstrap/index.js index 83a5672e..8dedb91a 100644 --- a/bootstrap/index.js +++ b/bootstrap/index.js @@ -24,7 +24,8 @@ const init = async () => { // eval(await (await fetch(`http://localhost:1234/goosemod.${locale}.js`)).text()); try { eval(await (await fetch(`https://raw.githubusercontent.com/GooseMod/GooseMod/dist-dev/goosemod.${locale}.js?_`)).text()); - } catch { + } catch (e) { + console.warn('[GooseMod Bootstrap]', 'Failed to fetch with buildtime', e); eval(await (await fetch(`https://raw.githubusercontent.com/GooseMod/GooseMod/dist-dev/goosemod.${locale}.js?_${Date.now()}`)).text()); } };