Alter channel unload behavior, add additional checks
- Should prevent "write after end" errors caused by unloading a channel before it finishes loading - Might prevent strange cases of playlists gone wild
This commit is contained in:
parent
b3ea7069a8
commit
f7e968a13c
6 changed files with 61 additions and 5 deletions
9
tests/fastQuit.js
Normal file
9
tests/fastQuit.js
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
var io = require('socket.io-client');
|
||||
|
||||
var socket = io.connect('http://localhost:1337');
|
||||
|
||||
// connect, join a room, then disconnect as quickly as possible
|
||||
socket.on('connect', function () {
|
||||
socket.emit('joinChannel', { name: 'test' });
|
||||
socket.disconnect();
|
||||
});
|
||||
Loading…
Add table
Add a link
Reference in a new issue