From baa154761e2e88ce014687ab0c4eedb98aef1038 Mon Sep 17 00:00:00 2001 From: Joas Schilling Date: Fri, 5 Mar 2021 12:41:46 +0100 Subject: [PATCH] Trespassing only with session Signed-off-by: Joas Schilling --- src/store/participantsStore.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/store/participantsStore.js b/src/store/participantsStore.js index 91ef38b6f..90453d468 100644 --- a/src/store/participantsStore.js +++ b/src/store/participantsStore.js @@ -286,6 +286,7 @@ const actions = { async joinCall({ commit, getters }, { token, participantIdentifier, flags }) { if (!participantIdentifier?.sessionId) { console.error('Trying to join call without sessionId') + return } const index = getters.getParticipantIndex(token, participantIdentifier)