Merge pull request #3275 from erew123/release

Correct skipping RVC on AllTalk V1 Server
This commit is contained in:
Cohee 2025-01-08 21:20:36 +02:00 committed by GitHub
commit d1f1299d43
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -388,7 +388,7 @@ class AllTalkTtsProvider {
}
async fetchRvcVoiceObjects() {
if (this.settings.server_version !== 'v2') {
if (this.settings.server_version == 'v2') {
console.log('Skipping RVC voices fetch for V1 server');
return [];
}