diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2021-03-21 17:38:09 +0900 |
|---|---|---|
| committer | syuilo <Syuilotan@yahoo.co.jp> | 2021-03-21 17:38:09 +0900 |
| commit | 667d58bad4544d6e9dc75cfc4e6216179e2bc1aa (patch) | |
| tree | d6ac2da158cece66b1815c9bab754e333628c7c8 /src/client/components/note.vue | |
| parent | Revert "perf: Reduce database query" (diff) | |
| download | sharkey-667d58bad4544d6e9dc75cfc4e6216179e2bc1aa.tar.gz sharkey-667d58bad4544d6e9dc75cfc4e6216179e2bc1aa.tar.bz2 sharkey-667d58bad4544d6e9dc75cfc4e6216179e2bc1aa.zip | |
better note read handling
Diffstat (limited to 'src/client/components/note.vue')
| -rw-r--r-- | src/client/components/note.vue | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/client/components/note.vue b/src/client/components/note.vue index 65e09b7802..70f49fef7e 100644 --- a/src/client/components/note.vue +++ b/src/client/components/note.vue @@ -325,7 +325,8 @@ export default defineComponent({ capture(withHandler = false) { if (this.$i) { - this.connection.send(document.body.contains(this.$el) ? 'sn' : 's', { id: this.appearNote.id }); + // TODO: このノートがストリーミング経由で流れてきた場合のみ sr する + this.connection.send(document.body.contains(this.$el) ? 'sr' : 's', { id: this.appearNote.id }); if (withHandler) this.connection.on('noteUpdated', this.onStreamNoteUpdated); } }, |