Merge branch 'subs' into 'develop'
relay: close sub when socket is closed See merge request soapbox-pub/ditto!20
This commit is contained in:
commit
12f6b1f1b7
|
@ -34,6 +34,10 @@ function connectStream(socket: WebSocket) {
|
|||
}
|
||||
};
|
||||
|
||||
socket.onclose = () => {
|
||||
Sub.close(socket);
|
||||
};
|
||||
|
||||
/** Handle client message. */
|
||||
function handleMsg(msg: ClientMsg) {
|
||||
switch (msg[0]) {
|
||||
|
|
Loading…
Reference in New Issue