Skip to content

Commit

Permalink
Fix tally ampersan (#206)
Browse files Browse the repository at this point in the history
Co-authored-by: Findeton <felix@sequentech.io>
  • Loading branch information
edulix and Findeton authored Dec 14, 2024
1 parent 90be98d commit 1057325
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/models/Models.scala
Original file line number Diff line number Diff line change
Expand Up @@ -859,7 +859,7 @@ case class Question(
url => (url.url == "true" && url.title == "isCategoryList")
}.length > 0
}
.map { answer => answer.text }
.map { answer => answer.text.replace("&amp;", "&").replace("&#43;", "+") }
.toSet
assert(
categoryNames == answerCategoryNames,
Expand Down

0 comments on commit 1057325

Please sign in to comment.