Merge pull request #6373 from nextcloud/fix-enabled-state-not-updated-in-device-checker

Fix enabled state not updated in device checker
This commit is contained in:
Joas Schilling 2021-10-20 15:04:36 +02:00 коммит произвёл GitHub
Родитель efd80ca9bd 8e261fa972
Коммит f99eeb1243
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 3 добавлений и 2 удалений

Просмотреть файл

@ -213,6 +213,9 @@ export default {
watch: {
modal(newValue) {
if (newValue) {
this.audioOn = !localStorage.getItem('audioDisabled_' + this.token)
this.videoOn = !localStorage.getItem('videoDisabled_' + this.token)
this.initializeDevicesMixin()
} else {
this.stopDevicesMixin()
@ -231,8 +234,6 @@ export default {
mounted() {
subscribe('talk:device-checker:show', this.showModal)
subscribe('talk:device-checker:hide', this.closeModal)
this.audioOn = !localStorage.getItem('audioDisabled_' + this.token)
this.videoOn = !localStorage.getItem('videoDisabled_' + this.token)
},
beforeDestroy() {