This commit is contained in:
Bel LaPointe
2025-02-12 16:11:40 -07:00
parent 0ec74308a7
commit 56f994c837

View File

@@ -36,7 +36,7 @@ func (p *PriceIsWrong) apply(e priceiswrong.Event) error {
case *priceiswrong.Guess:
for i := range p.Contestants {
if p.Contestants[i].ID == e.ID {
p.Contestants[i].Guess = e.Guess
p.Contestants[i].Guess = html.EscapeString(e.Guess)
}
}
}