From 041e16d2dd3b5102be9cf212ec30f8f80a58a07d Mon Sep 17 00:00:00 2001 From: Tiago D J Date: Fri, 8 May 2020 18:47:14 -0300 Subject: [PATCH] Change validateAuthToken key generator (#9468) --- .../imports/api/users/server/store/pendingAuthentications.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bigbluebutton-html5/imports/api/users/server/store/pendingAuthentications.js b/bigbluebutton-html5/imports/api/users/server/store/pendingAuthentications.js index c181ac8f95..44376cc085 100644 --- a/bigbluebutton-html5/imports/api/users/server/store/pendingAuthentications.js +++ b/bigbluebutton-html5/imports/api/users/server/store/pendingAuthentications.js @@ -13,7 +13,7 @@ class PendingAuthentitcations { authToken = authToken.replace(/ /g, ''); // Space separated key - return '${meetingId} ${userId} ${authToken}'; + return `${meetingId} ${userId} ${authToken}`; } add (meetingId, userId, authToken, methodInvocationObject) {