Change validateAuthToken key generator (#9468)

This commit is contained in:
Tiago D J 2020-05-08 18:47:14 -03:00 committed by GitHub
parent b70ee28a31
commit 041e16d2dd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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) {