diff --git a/c14h/main.go b/c14h/main.go index 56b9e49..d05e113 100644 --- a/c14h/main.go +++ b/c14h/main.go @@ -228,7 +228,7 @@ func handlePost(res http.ResponseWriter, req *http.Request) { return } - if date.Day() < 8 { + if !date.IsZero() && date.Day() < 8 { writeError(400, res, "This is the first thursday of the month. Since we currently have our Stammtisch there, you can't give a talk.") return }