diff --git a/backend/src/utils.ts b/backend/src/utils.ts index 5cc7a199..d0ab63cc 100644 --- a/backend/src/utils.ts +++ b/backend/src/utils.ts @@ -1332,7 +1332,7 @@ export function messageSummary(msg: SavedMessage) { "Poll: ```" + escapeCodeBlock( `Question: ${poll.question.text} - Answers: ${poll.answers.map((answer) => answer.text).join(" | ")}`, + Answers: ${poll.answers.map((answer) => `"${answer.text}"`).join(" | ")}`, ) + "```"; }