mirror of
https://gitlab.com/soapbox-pub/ditto.git
synced 2025-12-06 03:19:46 +00:00
relay: close sub when socket is closed
This commit is contained in:
parent
f9de6932ac
commit
00c531bbff
1 changed files with 4 additions and 0 deletions
|
|
@ -34,6 +34,10 @@ function connectStream(socket: WebSocket) {
|
|||
}
|
||||
};
|
||||
|
||||
socket.onclose = () => {
|
||||
Sub.close(socket);
|
||||
};
|
||||
|
||||
/** Handle client message. */
|
||||
function handleMsg(msg: ClientMsg) {
|
||||
switch (msg[0]) {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue