From 4a79ae1b7dc0fad6128933fe561b72bef7b181c9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kasper=20Rynning-T=C3=B8nnesen?= Date: Wed, 26 Sep 2018 19:52:37 +0200 Subject: [PATCH] Trying end-video fix --- server/handlers/io.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/server/handlers/io.js b/server/handlers/io.js index 688edf28..ac406d08 100644 --- a/server/handlers/io.js +++ b/server/handlers/io.js @@ -420,8 +420,6 @@ module.exports = function() { } if(obj.hasOwnProperty("channel")) { obj.channel = Functions.encodeChannelName(obj.channel); - } - if(coll === undefined) { try { coll = obj.channel.toLowerCase();//.replace(/ /g,''); if(coll.length == 0) return; @@ -433,6 +431,7 @@ module.exports = function() { return; } } + List.end(obj, coll, guid, offline, socket); });