should of tested that, drat.
going to just put last commit's authors note's here: Turns out this project is starting to get indexed by search engines. Hi crawlers! Kind of wish the SWFs were archived for the actual activities, though. (If you have MSOL.swf I'd be glad to talk about it.) Known Issues: Chrome 49 SUXX, as in it's not doing our beforeunload handler. I guess I should add a ping/pong routine to the server that removes "dead clients".
This commit is contained in:
parent
0db013ce57
commit
cf441a9e75
|
@ -104,7 +104,7 @@ const MessageParser = function(webSocket, message, isBinary) {
|
||||||
}
|
}
|
||||||
if(ChannelStorage.has(getChannelId) === false) {
|
if(ChannelStorage.has(getChannelId) === false) {
|
||||||
// make the channel right then and there
|
// make the channel right then and there
|
||||||
console.log(`creating #${getChannelId} (fourCC: ${args2}) for (${webSocket.getUserData().uid})`);
|
console.log(`creating #${getChannelId} (fourCC: ${args[2]}) for (${webSocket.getUserData().uid})`);
|
||||||
ChannelStorage.set(getChannelId, {"owner": webSocket.getUserData().uid, "fourCC": args[2]});
|
ChannelStorage.set(getChannelId, {"owner": webSocket.getUserData().uid, "fourCC": args[2]});
|
||||||
};
|
};
|
||||||
if(ChannelStorage.get(getChannelId).fourCC !== args[2]) {
|
if(ChannelStorage.get(getChannelId).fourCC !== args[2]) {
|
||||||
|
|
Loading…
Reference in New Issue