Забыл батчить, теперь ок
continuous-integration/drone/push Build is passing

This commit is contained in:
2025-12-24 16:17:50 +03:00
parent 683f779c31
commit 42fcc0eb16
4 changed files with 26 additions and 6 deletions
@@ -84,7 +84,6 @@ async def process_premium_question(message: Message, user: User, question_text:
try:
from urllib.parse import unquote
decoded = unquote(title)
# Если декодирование изменило строку или исходная содержит %XX
if decoded != title or '%' in title:
title = decoded
except:
@@ -152,7 +151,6 @@ async def process_free_question(message: Message, user: User, question_text: str
try:
from urllib.parse import unquote
decoded = unquote(title)
# Если декодирование изменило строку или исходная содержит %XX
if decoded != title or '%' in title:
title = decoded
except: