updated seasons list

This commit is contained in:
2026-02-02 22:39:03 +11:00
parent ef5a0dc078
commit 24bbc5337b
7 changed files with 116 additions and 62 deletions

View File

@@ -180,7 +180,7 @@ func NewSeasonSubmit(
// Helper function to validate alphanumeric strings
func isAlphanumeric(s string) bool {
for _, r := range s {
if !((r >= 'A' && r <= 'Z') || (r >= '0' && r <= '9')) {
if ((r < 'A') || (r > 'Z')) && ((r < '0') || (r > '9')) {
return false
}
}