Skip to content

Commit

Permalink
fix: bug
Browse files Browse the repository at this point in the history
  • Loading branch information
hiddify-com committed Jul 12, 2024
1 parent 867005c commit 076ff6c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hiddifypanel_bot/modules/admin/search_user.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ async def inline_query(query: HInlineQuery, name: str):
resp = tghelper.format_user_message_from_admin(query.lang, user)

response_text = f'`{user["uuid"]}`\n' + resp
response_text = response_text.replace(".", "\\.")
response_text = response_text.replace(".", "\\.").replace("-", "\\-")
keyboards = types.InlineKeyboardMarkup()
keyboards.add(types.InlineKeyboardButton(text=_("admin.loading"), callback_data="user_" + user["uuid"]))

Expand Down

0 comments on commit 076ff6c

Please sign in to comment.