From 03c18cdb766ebe5f5ad49695f6b250f18ab06c5a Mon Sep 17 00:00:00 2001 From: Zichao Lin Date: Sat, 11 Jul 2026 21:49:54 +0800 Subject: [PATCH] fix: copy button shows only the code number --- src/tg_bot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tg_bot.py b/src/tg_bot.py index 9fb1bd5..cfa4dbe 100644 --- a/src/tg_bot.py +++ b/src/tg_bot.py @@ -173,7 +173,7 @@ def _summary_keyboard(can_reply: bool = True, is_promotion: bool = False, kb.append([{"text": f"πŸ”— {text}", "url": url}]) if verification_code: code = verification_code.split(" ", 1)[-1] if " " in verification_code else verification_code - kb.append([{"text": f"πŸ“‹ 倍刢ιͺŒθ―η  {code}", "type": "copy_text", "text": code}]) + kb.append([{"text": code, "type": "copy_text", "text": code}]) return {"inline_keyboard": kb}