From fa6a74b766fffefc21db22d59b71751c7168b074 Mon Sep 17 00:00:00 2001
From: Greg Fodor <gfodor@gmail.com>
Date: Tue, 22 May 2018 13:13:14 -0700
Subject: [PATCH] Only flip debug on scene if it is set, but leave it alone
 otherwise

---
 src/hub.js | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/src/hub.js b/src/hub.js
index 4a19c796d..97470e1db 100644
--- a/src/hub.js
+++ b/src/hub.js
@@ -246,10 +246,13 @@ const onReady = async () => {
 
     scene.setAttribute("networked-scene", {
       room: hubId,
-      serverURL: process.env.JANUS_SERVER,
-      debug: isDebug
+      serverURL: process.env.JANUS_SERVER
     });
 
+    if (isDebug) {
+      scene.setAttribute("networked-scene", { debug: true });
+    }
+
     scene.setAttribute("stats-plus", false);
 
     if (isMobile || qsTruthy("mobile")) {
-- 
GitLab