From 90199635979d2f37c921e3011efe9602fa82215f Mon Sep 17 00:00:00 2001 From: Tamius Han Date: Sat, 16 May 2020 22:02:06 +0200 Subject: [PATCH] fix single video control not working --- src/ext/lib/comms/CommsServer.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ext/lib/comms/CommsServer.js b/src/ext/lib/comms/CommsServer.js index 7946bef..b3a6d16 100644 --- a/src/ext/lib/comms/CommsServer.js +++ b/src/ext/lib/comms/CommsServer.js @@ -212,7 +212,7 @@ class CommsServer { this.sendToAll(message); return; } - [tab, frame] = tab.split('-') + [tab, frame] = frame.split('-'); } this.logger.log('info', 'comms', `%c[CommsServer::sendToFrame] attempting to send message to tab ${tab}, frame ${frame}`, "background: #dda; color: #11D", message);