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.

de8ecc6903724b3bed8dcee1293048dcbef7703c

erew123 <35898566+erew123@users.noreply.github.com>

Signed
1 files changed, +1 -1Showing whitespace changes
public/scripts/extensions/tts/alltalk.js+1 -1
@@ -388,7 +388,7 @@ class AllTalkTtsProvider {
388 }388 }
389389
390 async fetchRvcVoiceObjects() {390 async fetchRvcVoiceObjects() {
391 if (this.settings.server_version !== 'v2') {391 if (this.settings.server_version !== 'v1') {
392 console.log('Skipping RVC voices fetch for V1 server');392 console.log('Skipping RVC voices fetch for V1 server');
393 return [];393 return [];
394 }394 }