skykoi 2026.3.48 → 2026.3.49
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/build-info.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
f2d18e3e309fc00381de525600a4a19589f6b72bf9030e677c0bcd0185f198c1
|
package/dist/index.js
CHANGED
|
@@ -5658,6 +5658,11 @@ const program = buildProgram();
|
|
|
5658
5658
|
if (isMainModule({ currentFile: fileURLToPath(import.meta.url) })) {
|
|
5659
5659
|
installUnhandledRejectionHandler();
|
|
5660
5660
|
process$1.on("uncaughtException", (error) => {
|
|
5661
|
+
const msg = String(error);
|
|
5662
|
+
if (msg.includes("Max reconnect attempts")) {
|
|
5663
|
+
console.warn("[SKYKOI] Discord gateway reconnect limit reached (non-fatal):", msg);
|
|
5664
|
+
return;
|
|
5665
|
+
}
|
|
5661
5666
|
console.error("[SKYKOI] Uncaught exception:", formatUncaughtError(error));
|
|
5662
5667
|
process$1.exit(1);
|
|
5663
5668
|
});
|