show real text for tg:// links

This commit is contained in:
bakatrouble 2019-12-09 02:22:07 +03:00
parent f832148537
commit f38fce1550

View File

@ -2,6 +2,7 @@
import logging
import os
import re
import traceback
from datetime import datetime, timedelta
from html import escape
@ -144,6 +145,8 @@ def _sign_text(text, m: Message, limit):
if not text:
text = ''
text = re.sub(r'<a href="(tg://.*?)">.*?</a>', '<a href="\\1">\\1</a>', text)
sign = ''
if text.startswith('!sign') or text.startswith('/sign'):
text = text[5:]