Inverted character threshold

merge-requests/30/head
Bob Mottram 2022-09-25 19:25:13 +01:00
parent 8142b5d741
commit 25c3997239
1 changed files with 1 additions and 1 deletions

View File

@ -3901,7 +3901,7 @@ def remove_inverted_text(text: str, system_language: str) -> str:
replaced_chars += 1
index += 1
if replaced_chars > 3:
if replaced_chars > 2:
text = text[::-1]
return text