fix: normalize question marks in title matching

This commit is contained in:
jxxghp
2026-07-02 08:51:16 +08:00
parent 6916ee0988
commit d8f7fa70af
2 changed files with 50 additions and 1 deletions

View File

@@ -203,7 +203,7 @@ class StringUtils:
忽略特殊字符
"""
# 需要忽略的特殊字符
CONVERT_EMPTY_CHARS = r"[、.。,,·:;!'\"“”()\[\]【】「」\-—―\+\|\\_/&#~]"
CONVERT_EMPTY_CHARS = r"[、.。,,·:;!?'\"“”()\[\]【】「」\-—―\+\|\\_/&#~]"
if not text:
return text
if not isinstance(text, list):