This commit is contained in:
mm 2024-10-30 16:31:16 +05:00
parent 5043449bf1
commit b0a5c378db

View File

@ -129,8 +129,8 @@ function playSpeech(text) {
)
}
function playSpeechAfterAudio(text, widgetID) {
playAudio(widget.AudioUrl, widgetID, () => playSpeech(text));
function playSpeechAfterAudio(audioUrl, widgetID, text) {
playAudio(audioUrl, widgetID, () => playSpeech(text));
}
function delay(ms) {