Changed CallbackQuery delimiter (from ; to :)

This commit is contained in:
2023-08-12 22:36:55 +02:00
parent aee5cdf6a5
commit e9ef008080
5 changed files with 11 additions and 11 deletions

View File

@@ -11,7 +11,7 @@ from classes.pyrogroup import PyroGroup
logger = logging.getLogger(__name__)
@PyroClient.on_callback_query(filters.regex(r"ban;[\s\S]*")) # type: ignore
@PyroClient.on_callback_query(filters.regex(r"ban:[\s\S]*")) # type: ignore
async def callback_ban(app: PyroClient, callback: CallbackQuery):
group = await PyroGroup.create_if_not_exists(callback.message.chat.id, None, True)
locale = group.select_locale(app, callback.message.from_user)

View File

@@ -16,7 +16,7 @@ from classes.pyrogroup import PyroGroup
logger = logging.getLogger(__name__)
@PyroClient.on_callback_query(filters.regex(r"emoji;[\s\S]*")) # type: ignore
@PyroClient.on_callback_query(filters.regex(r"emoji:[\s\S]*")) # type: ignore
async def callback_emoji_button(app: PyroClient, callback: CallbackQuery):
parsed = CallbackEmoji.from_callback(callback)
group = await PyroGroup.create_if_not_exists(callback.message.chat.id, None, True)

View File

@@ -17,7 +17,7 @@ from modules.utils import get_captcha_image
logger = logging.getLogger(__name__)
@PyroClient.on_callback_query(filters.regex(r"verify;[\s\S]*")) # type: ignore
@PyroClient.on_callback_query(filters.regex(r"verify:[\s\S]*")) # type: ignore
async def callback_verify(app: PyroClient, callback: CallbackQuery):
parsed = CallbackVerify.from_callback(callback)
group = await PyroGroup.create_if_not_exists(callback.message.chat.id, None, True)
@@ -50,7 +50,7 @@ async def callback_verify(app: PyroClient, callback: CallbackQuery):
await user.set_emojis(captcha.emojis_correct)
buttons = [
InlineButton(emoji, f"emoji;{user.id};{emoji}") for emoji in captcha.emojis_all
InlineButton(emoji, f"emoji:{user.id}:{emoji}") for emoji in captcha.emojis_all
]
keyboard = InlineKeyboard(3)