diff --git a/apps/telegram-bot/commands.py b/apps/telegram-bot/commands.py index ad8f0ad..3c39fe1 100644 --- a/apps/telegram-bot/commands.py +++ b/apps/telegram-bot/commands.py @@ -661,8 +661,7 @@ async def cmd_show(update: Update, ctx: ContextTypes.DEFAULT_TYPE) -> None: due_str = dt_due.strftime("%d %B %Y %H:%M") lines.append(f"📅 {due_str} ({timezone_str})") - username = bounty.created_by_username or f"user#{bounty.created_by_user_id}" - lines.append(f"👤 @{username}") + lines.append(f"👤 [User](tg://user?id={bounty.created_by_user_id})") dt_created = datetime.fromtimestamp(bounty.created_at, tz=tz) created_str = dt_created.strftime("%Y-%m-%d %H:%M")