From 20c350a31f1ee04f462e9b4ee47edc181d53cea4 Mon Sep 17 00:00:00 2001 From: thororen1234 <78185467+thororen1234@users.noreply.github.com> Date: Tue, 4 Mar 2025 09:05:14 -0500 Subject: [PATCH] Add Ignore --- src/plugins/vcNarrator/index.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/plugins/vcNarrator/index.tsx b/src/plugins/vcNarrator/index.tsx index 45d41c81..104ba58f 100644 --- a/src/plugins/vcNarrator/index.tsx +++ b/src/plugins/vcNarrator/index.tsx @@ -146,6 +146,7 @@ function speak(text: string) { new Logger("VcNarrator").error(`Voice "${settings.store.voice}" not found. Resetting to default.`); voice = speechSynthesis.getVoices().find(v => v.default); if (!voice) return; // This should never happen + // @ts-ignore settings.store.voice = voice.voiceURI; } speech.voice = voice!;