From 875b3fb17da0eaf4318966d20f0ecabef8476311 Mon Sep 17 00:00:00 2001 From: Mathium05 Date: Wed, 29 Jul 2026 18:38:55 -0500 Subject: [PATCH] show results of poll --- src/webpage/message.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/webpage/message.ts b/src/webpage/message.ts index 1e5cf18..5f852e2 100644 --- a/src/webpage/message.ts +++ b/src/webpage/message.ts @@ -1321,7 +1321,7 @@ class Message extends SnowFlake { question.textContent = this.poll.question.text; pollbody.append(question); let ccount = [...r.values()].reduce((e, l) => e + +l.me_voted, 0); - if (this.poll.allow_multiselect) voted = !!ccount; + voted = !!ccount; for (const a of this.poll.answers) { const aarea = document.createElement("div"); aarea.classList.add("flexltr", "answerArea");