diff --git a/commands.py b/commands.py index c3abbb8..4f93aa3 100644 --- a/commands.py +++ b/commands.py @@ -235,7 +235,7 @@ async def user_command(update: Update, context: ContextTypes.DEFAULT_TYPE) -> No ] reply_markup = InlineKeyboardMarkup(keyboard) - m = [" ".join(["ID:", str(user_data["id"])])] + m = [" ".join(["ID:", html_parser.code(user_data["id"])])] created_at = datetime.fromisoformat(user_data["created_at"]) m.append(" ".join(["Join Date:", created_at.strftime("%Y-%m-%d")])) m.append(" ".join(["Level:", user_data["level_string"]]))