From 48392c89f1e766ba074aa60ede0c1d09795903f2 Mon Sep 17 00:00:00 2001 From: shinya Date: Wed, 25 Jun 2025 01:03:51 +0800 Subject: [PATCH] feat: change 3x condition --- src/app/play/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/play/page.tsx b/src/app/play/page.tsx index 909984f..3ae7c85 100644 --- a/src/app/play/page.tsx +++ b/src/app/play/page.tsx @@ -1269,7 +1269,7 @@ function PlayPageClient() { } // 仅在播放时触发 - if (artPlayerRef.current?.video?.paused) { + if (!artPlayerRef.current?.playing) { return; }