diff --git a/src/components/ConversationSettings/ConversationSettingsDialog.vue b/src/components/ConversationSettings/ConversationSettingsDialog.vue index 4194125519c..37120ccf4aa 100644 --- a/src/components/ConversationSettings/ConversationSettingsDialog.vue +++ b/src/components/ConversationSettings/ConversationSettingsDialog.vue @@ -215,7 +215,8 @@ export default { /** * Get the deviceChecker value from the browserstorage. */ - this.showDeviceChecker = BrowserStorage.getItem('showDeviceChecker' + this.token) === 'true' + this.showDeviceChecker = BrowserStorage.getItem('showDeviceChecker' + this.token) === null + || BrowserStorage.getItem('showDeviceChecker' + this.token) === 'true' }, methods: {