From e21b8689fe0d594bda21028fa005d7e1da43108e Mon Sep 17 00:00:00 2001 From: Greg Fodor <gfodor@gmail.com> Date: Fri, 9 Nov 2018 18:42:22 +0000 Subject: [PATCH] Show lobby users --- src/hub.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/hub.js b/src/hub.js index 9e01515f9..2fce4115d 100644 --- a/src/hub.js +++ b/src/hub.js @@ -472,8 +472,7 @@ document.addEventListener("DOMContentLoaded", async () => { hubPhxPresence.onSync(() => { remountUI({ presences: hubPhxPresence.state }); - const occupantCount = Object.values(hubPhxPresence.state).filter(v => v.metas[0] && v.metas[0].presence === "room") - .length; + const occupantCount = Object.entries(hubPhxPresence.state).length; vrHudPresenceCount.setAttribute("text", "value", occupantCount.toString()); if (!isInitialSync) return; -- GitLab