muh dik
This commit is contained in:
@ -151,7 +151,7 @@ const postReplyToStatus = async (
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
const ws = createWebsocket();
|
let ws = createWebsocket();
|
||||||
|
|
||||||
ws.on("upgrade", () => {
|
ws.on("upgrade", () => {
|
||||||
console.log(
|
console.log(
|
||||||
@ -170,6 +170,10 @@ ws.on("open", () => {
|
|||||||
}, 20000);
|
}, 20000);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
ws.on("pong", (data) => {
|
||||||
|
console.log(`Pong received: ${JSON.stringify(data.toString("utf-8"))}`);
|
||||||
|
});
|
||||||
|
|
||||||
ws.on("message", async (data) => {
|
ws.on("message", async (data) => {
|
||||||
try {
|
try {
|
||||||
const message: WSEvent = JSON.parse(data.toString("utf-8"));
|
const message: WSEvent = JSON.parse(data.toString("utf-8"));
|
||||||
|
Reference in New Issue
Block a user