From 15a834f4b8142dd7ba8068d58e5ddf5335b00963 Mon Sep 17 00:00:00 2001
From: Anton Georgiev <anto.georgiev@gmail.com>
Date: Tue, 2 Jul 2019 21:15:32 +0000
Subject: [PATCH] prepend sessionToken to uniqueClientSession

---
 bigbluebutton-html5/imports/ui/services/auth/index.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/bigbluebutton-html5/imports/ui/services/auth/index.js b/bigbluebutton-html5/imports/ui/services/auth/index.js
index ed2280aa78..7d0c83ff55 100755
--- a/bigbluebutton-html5/imports/ui/services/auth/index.js
+++ b/bigbluebutton-html5/imports/ui/services/auth/index.js
@@ -197,7 +197,7 @@ class Auth {
     return this.validateAuthToken()
       .then(() => {
         this.loggedIn = true;
-        this.uniqueClientSession = Math.random().toString(36).substring(6);
+        this.uniqueClientSession = `${this.sessionToken}-${Math.random().toString(36).substring(6)}`;
       });
   }
 
-- 
GitLab