@@ -0,0 +1,8 @@
const getSocket = (url: string): WebSocket => {
let ws = new WebSocket(url);
ws.onclose = () => setTimeout(() => (ws = getSocket(url)), 100);
ws.onerror = () => ws.close();
return ws;
};
The note is not visible to the blocked user.