Change validateAuthToken key generator

This commit is contained in:
Tiago Jacobs 2020-05-08 18:45:35 -03:00
parent b70ee28a31
commit 70f39ee758

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