diff --git a/components/chat/ChatPost.vue b/components/chat/ChatPost.vue index f444a3d..f873655 100644 --- a/components/chat/ChatPost.vue +++ b/components/chat/ChatPost.vue @@ -310,8 +310,10 @@ export default { return this.post.context; } else if (this.post?.content.context) { return this.post.content.context; - } else if (this.post?.context_details.context_id) { + } else if (this.post?.context_details?.context_id) { return this.post.context_details.context_id; + } else if (this.post?.stream_id) { + return this.post.stream_id; } else { return this.orbisContext; }