Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/spreed.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/src/store
diff options
context:
space:
mode:
authormarco <marcoambrosini@pm.me>2021-08-31 15:35:06 +0300
committermarco <marcoambrosini@pm.me>2021-08-31 15:35:06 +0300
commit5f20110113f42bcdd3c196ddaf96cba6183241e2 (patch)
treef6b17ed8120f3766faf962708c3159916f78d943 /src/store
parent1674b09dfc0d6196d1aa14137f999fbe5b6b673f (diff)
Fix remaining warnings
Signed-off-by: marco <marcoambrosini@pm.me>
Diffstat (limited to 'src/store')
-rw-r--r--src/store/participantsStore.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/store/participantsStore.js b/src/store/participantsStore.js
index 0123b33d5..3ec1ac21b 100644
--- a/src/store/participantsStore.js
+++ b/src/store/participantsStore.js
@@ -432,7 +432,7 @@ const actions = {
// not listen to when it was used.
const interval = setInterval(function() {
// eslint-disable-next-line no-undef
- if ($('.oc-dialog-dim').length === 0) {
+ if (document.getElementsByClassName('oc-dialog-dim').length === 0) {
clearInterval(interval)
EventBus.$emit('duplicate-session-detected')
window.location = generateUrl('/apps/spreed')