diff --git a/src/components/notifications/notifications.js b/src/components/notifications/notifications.js
index 3f9fe3b4be8017addebc33823966c5a6c68a2f63..e872a2e5ef230f82351be6b2b6516f7494454d5d 100644
--- a/src/components/notifications/notifications.js
+++ b/src/components/notifications/notifications.js
@@ -25,8 +25,8 @@ const Notifications = {
   },
   watch: {
     unseenCount (count) {
-      this.$store.dispatch('setPageTitle', `(${count})`)
-      if (count==0) this.$store.dispatch('setPageTitle', '')
+      if (count>0) this.$store.dispatch('setPageTitle', `(${count})`)
+      else this.$store.dispatch('setPageTitle', '')
     }
   },
   methods: {