From de8ecc6903724b3bed8dcee1293048dcbef7703c Mon Sep 17 00:00:00 2001 From: erew123 <35898566+erew123@users.noreply.github.com> Date: Tue, 7 Jan 2025 23:20:53 +0000 Subject: [PATCH] Correct skipping RVC on AllTalk V1 Server Silly bug that caused the extension when used with the legacy V1 AllTalk server, would cause it to skip downloading Narrator voices. Literally changed "v2" to "v1" on line 391 No other changes. --- public/scripts/extensions/tts/alltalk.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/scripts/extensions/tts/alltalk.js b/public/scripts/extensions/tts/alltalk.js index 05e3db5d8..aaad6073d 100644 --- a/public/scripts/extensions/tts/alltalk.js +++ b/public/scripts/extensions/tts/alltalk.js @@ -388,7 +388,7 @@ class AllTalkTtsProvider { } async fetchRvcVoiceObjects() { - if (this.settings.server_version !== 'v2') { + if (this.settings.server_version !== 'v1') { console.log('Skipping RVC voices fetch for V1 server'); return []; }