From f0df6a6d2c463c4e2721f132720e3bbca8846427 Mon Sep 17 00:00:00 2001 From: Sig <62321214+sigprogramming@users.noreply.github.com> Date: Tue, 24 Sep 2024 09:23:58 +0900 Subject: [PATCH] =?UTF-8?q?Fix:=20=E3=83=95=E3=83=AC=E3=83=BC=E3=82=BA?= =?UTF-8?q?=E3=81=AE=E3=83=AC=E3=83=B3=E3=83=80=E3=83=AA=E3=83=B3=E3=82=B0?= =?UTF-8?q?=E3=81=A7=E3=82=A8=E3=83=A9=E3=83=BC=E3=81=AB=E3=81=AA=E3=82=8B?= =?UTF-8?q?=E3=81=93=E3=81=A8=E3=81=8C=E3=81=82=E3=82=8B=E3=81=AE=E3=82=92?= =?UTF-8?q?=E4=BF=AE=E6=AD=A3=20(#2271)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit phraseのstateを更新していなかったのを修正 --- src/store/singing.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/store/singing.ts b/src/store/singing.ts index 276a5120d2..7ed2ee7a0f 100644 --- a/src/store/singing.ts +++ b/src/store/singing.ts @@ -1695,7 +1695,9 @@ export const singingStore = createPartialStore({ foundPhrase.trackId, phraseKey, ); - if (renderStartStageId != undefined) { + if (renderStartStageId == undefined) { + phrase.state = "PLAYABLE"; + } else { renderStartStageIds.set(phraseKey, renderStartStageId); phrase.state = "WAITING_TO_BE_RENDERED"; }