🔧 fix: STT/TTS external checks pt. 2 (#3410)

This commit is contained in:
Marco Beretta 2024-07-21 17:38:04 +02:00 committed by GitHub
parent 620973436c
commit 344297021f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -77,8 +77,8 @@ function Speech() {
if (
(settings[key].value !== newValue || settings[key].value === newValue || !settings[key]) &&
settings[key].value !== 'sttExternal' &&
settings[key].value !== 'ttsExternal'
settings[key].value === 'sttExternal' &&
settings[key].value === 'ttsExternal'
) {
return;
}