From fc2fe2f1347df9d00e2dd66e69cc50031698a439 Mon Sep 17 00:00:00 2001 From: Joas Schilling Date: Mon, 26 Sep 2022 16:02:21 +0200 Subject: Fix missing browser notifications Signed-off-by: Joas Schilling --- src/Components/Notification.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Components/Notification.vue b/src/Components/Notification.vue index 94382cc..4ebd3d2 100644 --- a/src/Components/Notification.vue +++ b/src/Components/Notification.vue @@ -245,7 +245,7 @@ export default { console.error('Failed to read showBrowserNotifications property from App component') } - if (this.$parent.$parent.showBrowserNotifications) { + if (this.$parent.$parent.$parent.showBrowserNotifications) { this._createWebNotification() if (this.app === 'spreed' && this.objectType === 'call') { -- cgit v1.2.3