fix: add | to allowed chars

This commit is contained in:
2026-01-07 14:56:01 +02:00
parent fa43517b16
commit 4c05ceefcd

View File

@ -12,5 +12,5 @@ trait ValidatorHelper {
object ValidatorHelper {
final val VALID_CHARACTERS = HashSet.from("!@#$%^&*()-_=+;:',./? ")
final val VALID_CHARACTERS = HashSet.from("!@#$%^&*()-_=+;:',./?| ")
}