Added toastr messages to tts index file
This commit is contained in:
parent
4b7c9ffe91
commit
6cf897219e
|
@ -465,6 +465,7 @@ async function processAudioJobQueue() {
|
||||||
playAudioData(currentAudioJob);
|
playAudioData(currentAudioJob);
|
||||||
talkingAnimation(true);
|
talkingAnimation(true);
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
|
toastr.error(error.toString());
|
||||||
console.error(error);
|
console.error(error);
|
||||||
audioQueueProcessorReady = true;
|
audioQueueProcessorReady = true;
|
||||||
}
|
}
|
||||||
|
@ -579,6 +580,7 @@ async function processTtsQueue() {
|
||||||
}
|
}
|
||||||
tts(text, voiceId, char);
|
tts(text, voiceId, char);
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
|
toastr.error(error.toString());
|
||||||
console.error(error);
|
console.error(error);
|
||||||
currentTtsJob = null;
|
currentTtsJob = null;
|
||||||
}
|
}
|
||||||
|
@ -648,6 +650,7 @@ function onRefreshClick() {
|
||||||
initVoiceMap();
|
initVoiceMap();
|
||||||
updateVoiceMap();
|
updateVoiceMap();
|
||||||
}).catch(error => {
|
}).catch(error => {
|
||||||
|
toastr.error(error.toString());
|
||||||
console.error(error);
|
console.error(error);
|
||||||
setTtsStatus(error, false);
|
setTtsStatus(error, false);
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in New Issue