Skip to content
Snippets Groups Projects
Commit 2cda889d authored by Joao Siebel's avatar Joao Siebel
Browse files

Previne loggedOut property to be undefined. close #12656

parent 5f71d533
No related branches found
No related tags found
No related merge requests found
......@@ -40,7 +40,7 @@ export default function userLeaving(meetingId, userId, connectionId) {
const payload = {
userId,
sessionId: meetingId,
loggedOut: user.loggedOut,
loggedOut: user.loggedOut || false,
};
ClientConnections.removeClientConnection(`${meetingId}--${userId}`, connectionId);
......
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