Skip to content
Snippets Groups Projects
Unverified Commit 65e6f150 authored by Anton Georgiev's avatar Anton Georgiev Committed by GitHub
Browse files

Merge pull request #9469 from tdjac0bs/fix_auth_key

Change validateAuthToken key generator and add details to log
parents 041e16d2 eee9d896
No related branches found
No related tags found
No related merge requests found
......@@ -25,8 +25,8 @@ class PendingAuthentitcations {
}
take (meetingId, userId, authToken) {
Logger.debug("PendingAuthentitcations :: take", {meetingId, userId, authToken});
const key = this.generateKey(meetingId, userId, authToken);
Logger.debug("PendingAuthentitcations :: take", {key, meetingId, userId, authToken});
// find matches
const matches = this.store.filter( e => e.key === key );
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment