mirror of
https://example.com
synced 2024-11-23 12:06:39 +09:00
fix(client): 通知が流れない問題を修正
This commit is contained in:
parent
0ca3c0bca1
commit
9f94f60ede
1 changed files with 4 additions and 3 deletions
|
@ -75,11 +75,12 @@ export default Vue.extend({
|
||||||
this.$root.stream.send('readNotification', {
|
this.$root.stream.send('readNotification', {
|
||||||
id: notification.id
|
id: notification.id
|
||||||
});
|
});
|
||||||
|
|
||||||
notification.isRead = true;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
this.prepend(notification);
|
this.prepend({
|
||||||
|
...notification,
|
||||||
|
isRead: document.visibilityState === 'visible'
|
||||||
|
});
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in a new issue