From 90b4633f6b0cc8870841125f119dc784d3df069c Mon Sep 17 00:00:00 2001 From: mtvpls Date: Thu, 26 Mar 2026 18:56:13 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E5=BD=93=E5=89=8D=E9=9B=86?= =?UTF-8?q?=E6=8B=89=E5=9B=9E=E5=BC=80=E5=A4=B4=E6=98=BE=E7=A4=BA=E6=81=A2?= =?UTF-8?q?=E5=A4=8D=E8=BF=9B=E5=BA=A6=E6=8C=89=E9=92=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/app/play/page.tsx | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/app/play/page.tsx b/src/app/play/page.tsx index 2284e28..270cce6 100644 --- a/src/app/play/page.tsx +++ b/src/app/play/page.tsx @@ -7315,6 +7315,11 @@ function PlayPageClient() { // 条件:当前播放时间 < 10秒 且 播放记录时间 > 10秒 const checkPlayRecordJump = async () => { try { + // 仅在进入播放后的首次检查时处理,避免本次会话新生成的记录触发恢复按钮 + if (!playRecordJumpInitialCheckRef.current) { + return; + } + // 如果用户已经关闭过跳转按钮,不再显示 if (playRecordJumpDismissedRef.current) { return;