[WEB-1643] chore: support cyrillic characters in subject #7336
This commit is contained in:
parent
99127ff8e4
commit
3224122df0
1 changed files with 2 additions and 2 deletions
|
|
@ -21,8 +21,8 @@ from plane.utils.exception_logger import log_exception
|
|||
|
||||
|
||||
def remove_unwanted_characters(input_text):
|
||||
# Keep only alphanumeric characters, spaces, and dashes.
|
||||
processed_text = re.sub(r"[^a-zA-Z0-9 \-]", "", input_text)
|
||||
# Remove only control characters and potentially problematic characters for email subjects
|
||||
processed_text = re.sub(r"[\x00-\x1F\x7F-\x9F]", "", input_text)
|
||||
return processed_text
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue