glitch-javascript-sdk 3.9.1 → 3.9.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/browser/hosting-runtime.js +2 -1
- package/dist/browser/hosting-runtime.js.map +1 -1
- package/dist/cjs/index.js.map +1 -1
- package/dist/esm/api/Hosting.d.ts +4 -1
- package/dist/esm/index.js.map +1 -1
- package/package.json +1 -1
- package/src/api/Hosting.ts +4 -1
- package/src/hosting-runtime.ts +2 -1
|
@@ -5840,7 +5840,8 @@
|
|
|
5840
5840
|
return session;
|
|
5841
5841
|
}).catch((error) => {
|
|
5842
5842
|
window.dispatchEvent(new CustomEvent('glitch:hosting-error', { detail: { message: (error === null || error === void 0 ? void 0 : error.message) || 'Hosting analytics could not start.' } }));
|
|
5843
|
-
|
|
5843
|
+
// Analytics must never prevent the uploaded game itself from loading.
|
|
5844
|
+
return null;
|
|
5844
5845
|
});
|
|
5845
5846
|
window.GlitchHosting = {
|
|
5846
5847
|
ready,
|