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

Merge pull request #12702 from jfsiebel/prevent-add-connection-status-spam

Prevent addConnectionStatus log spam when not authenticated
parents 213e0e4b 14abe5c2
No related branches found
No related tags found
No related merge requests found
......@@ -42,6 +42,8 @@ export default function addConnectionStatus(status, type, value) {
check(type, String);
check(value, Object);
if (!this.userId) return;
const { meetingId, requesterUserId } = extractCredentials(this.userId);
check(meetingId, String);
......
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