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

github.com/nextcloud/notifications.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2022-09-26 17:02:21 +0300
committerJoas Schilling <coding@schilljs.com>2022-09-26 17:02:21 +0300
commitfc2fe2f1347df9d00e2dd66e69cc50031698a439 (patch)
treefddbe5b7f40d7b1e7479c2eb48e639175b57e8fb
parentbf141e0c37736d3ac5d6ee00b621f190546eb6e0 (diff)
Fix missing browser notifications
Signed-off-by: Joas Schilling <coding@schilljs.com>
-rw-r--r--src/Components/Notification.vue2
1 files changed, 1 insertions, 1 deletions
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') {