process split text before checking if it is empty

pull/1065/head
Josh Greenwood 2 years ago committed by GitHub
parent 12f99f4e9d
commit 571c782021
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -94,7 +94,7 @@ class TTSEngine:
offset = 0
for idy, text_cut in enumerate(split_text):
# print(f"{idx}-{idy}: {text_cut}\n")
if not text_cut or text_cut.isspace():
if not process_text(text_cut) or process_text(text_cut.isspace()):
offset += 1
continue

Loading…
Cancel
Save