mirror of
https://github.com/aiogram/aiogram.git
synced 2026-04-08 16:37:47 +00:00
fix: rm _ duplicate from bad pattern
This commit is contained in:
parent
ab97201fd3
commit
5c1c4dad78
1 changed files with 1 additions and 1 deletions
|
|
@ -64,7 +64,7 @@ from aiogram.utils.payload import encode_payload, decode_payload
|
|||
if TYPE_CHECKING:
|
||||
from aiogram import Bot
|
||||
|
||||
BAD_PATTERN = re.compile(r"[^_A-z0-9-]")
|
||||
BAD_PATTERN = re.compile(r"[^A-z0-9-]")
|
||||
|
||||
|
||||
async def create_start_link(
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue