This commit is contained in:
2025-07-02 06:42:22 -04:00
parent 6088a2cbd3
commit dac037809c

View File

@ -166,6 +166,7 @@ ws.on("close", (event: CloseEvent) => {
ws.on("open", () => {
setInterval(() => {
ws.send(JSON.stringify({ type: "ping" }));
console.log("Sending ping to keep session alive...");
}, 20000);
});