This commit is contained in:
David Wilkie 2021-09-17 16:06:11 +07:00
parent 49fcfbf874
commit d70350b7ab
1 changed files with 1 additions and 1 deletions

View File

@ -733,7 +733,7 @@ static int process_cdata_tts(struct ssml_parser *parsed_data, char *data, size_t
/* is CDATA either non-ascii or graphic? */
for (i = 0; i < len && !present; i++) {
present |= (!isascii(data[i]) | isgraph(data[i]));
present |= ((!isascii(data[i])) | isgraph(data[i]));
}
if (!present) {
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_DEBUG, "Skipping empty tts\n");