From b46449a6e48031b53cdf8f0a57fbaa8c29a5dc1b Mon Sep 17 00:00:00 2001 From: CrescentLeaf Date: Sun, 9 Nov 2025 16:03:29 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20chat-video=20=E6=B2=A1=E6=9C=89=E6=9B=B4?= =?UTF-8?q?=E6=96=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- client/ui/custom-elements/chat-video.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/client/ui/custom-elements/chat-video.ts b/client/ui/custom-elements/chat-video.ts index be2a808..01f4c9c 100644 --- a/client/ui/custom-elements/chat-video.ts +++ b/client/ui/custom-elements/chat-video.ts @@ -27,5 +27,6 @@ customElements.define('chat-video', class extends HTMLElement { this.video.onclick = (e) => e.stopPropagation() this.shadowRoot!.appendChild(this.video) + this.update() } })