This commit is contained in:
mkm 2023-10-13 18:22:58 +08:00
parent 9c636041f2
commit af1b902a25

View File

@ -74,7 +74,15 @@ class Pusher
if ($tts_type == 1) {
if (count($arr) == 2) {
$resp['payload']['choices']['tts_text'] = $text.$arr[0];
$text =$arr[1]??'';
unset($arr[0]);
if(count($arr)>0){
foreach ($arr as $k => $v) {
$text .=$v;
}
}else{
$text ='';
}
$response = json_encode($resp, true);
} else {
$resp['payload']['choices']['tts_text'] = '';