mirror of
https://github.com/SillyTavern/SillyTavern.git
synced 2025-06-05 21:59:27 +02:00
fix current tts job not clearing on empty text
This commit is contained in:
@ -1,3 +1,4 @@
|
|||||||
|
import { config } from 'yargs'
|
||||||
import { callPopup, cancelTtsPlay, isMultigenEnabled, is_send_press, saveSettingsDebounced } from '../../../script.js'
|
import { callPopup, cancelTtsPlay, isMultigenEnabled, is_send_press, saveSettingsDebounced } from '../../../script.js'
|
||||||
import { extension_settings, getContext } from '../../extensions.js'
|
import { extension_settings, getContext } from '../../extensions.js'
|
||||||
import { getStringHash } from '../../utils.js'
|
import { getStringHash } from '../../utils.js'
|
||||||
@ -174,6 +175,7 @@ function debugTtsPlayback() {
|
|||||||
"audioQueueProcessorReady": audioQueueProcessorReady,
|
"audioQueueProcessorReady": audioQueueProcessorReady,
|
||||||
"ttsJobQueue": ttsJobQueue,
|
"ttsJobQueue": ttsJobQueue,
|
||||||
"currentTtsJob": currentTtsJob,
|
"currentTtsJob": currentTtsJob,
|
||||||
|
"ttsConfig": extension_settings.tts
|
||||||
}
|
}
|
||||||
))
|
))
|
||||||
}
|
}
|
||||||
@ -372,6 +374,7 @@ async function processTtsQueue() {
|
|||||||
try {
|
try {
|
||||||
if (!text) {
|
if (!text) {
|
||||||
console.warn('Got empty text in TTS queue job.');
|
console.warn('Got empty text in TTS queue job.');
|
||||||
|
completeTtsJob()
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user