diff options
Diffstat (limited to 'packages/client/src/ui/chat/note.vue')
| -rw-r--r-- | packages/client/src/ui/chat/note.vue | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/packages/client/src/ui/chat/note.vue b/packages/client/src/ui/chat/note.vue index 6927dd0eaf..fa5faa4ec3 100644 --- a/packages/client/src/ui/chat/note.vue +++ b/packages/client/src/ui/chat/note.vue @@ -118,6 +118,7 @@ import copyToClipboard from '@/scripts/copy-to-clipboard'; import { checkWordMute } from '@/scripts/check-word-mute'; import { userPage } from '@/filters/user'; import * as os from '@/os'; +import { stream } from '@/stream'; import { noteActions, noteViewInterruptors } from '@/store'; import { reactionPicker } from '@/scripts/reaction-picker'; import { extractUrlFromMfm } from '@/scripts/extract-url-from-mfm'; @@ -243,7 +244,7 @@ export default defineComponent({ async created() { if (this.$i) { - this.connection = os.stream; + this.connection = stream; } this.collapsed = this.appearNote.cw == null && this.appearNote.text && ( |