fix(broker): plain text for email verification prompt (markdown parse error)
Masked email with asterisks broke Telegram Markdown bold syntax. Use plain text for the code prompt message. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
@@ -713,10 +713,7 @@ async function startEmailVerification(
|
|||||||
conversationState.set(chatId, "awaiting_code");
|
conversationState.set(chatId, "awaiting_code");
|
||||||
|
|
||||||
const masked = email.replace(/(.{2})(.*)(@.*)/, "$1***$3");
|
const masked = email.replace(/(.{2})(.*)(@.*)/, "$1***$3");
|
||||||
await ctx.reply(
|
await ctx.reply(`📬 Verification code sent to ${masked}\n\nEnter the 6-digit code:`);
|
||||||
`📬 Verification code sent to *${escapeMarkdown(masked)}*\n\nEnter the 6-digit code:`,
|
|
||||||
{ parse_mode: "Markdown" },
|
|
||||||
);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/** Result from looking up a user's meshes by email */
|
/** Result from looking up a user's meshes by email */
|
||||||
|
|||||||
Reference in New Issue
Block a user