fix(client): 通知が流れない問題を修正

This commit is contained in:
syuilo 2020-07-29 01:50:30 +09:00
parent 0ca3c0bca1
commit 9f94f60ede

View file

@ -75,11 +75,12 @@ export default Vue.extend({
this.$root.stream.send('readNotification', {
id: notification.id
});
notification.isRead = true;
}
this.prepend(notification);
this.prepend({
...notification,
isRead: document.visibilityState === 'visible'
});
},
}
});