diff --git a/api/account.go b/api/account.go index a4da5e1..9d51f1d 100644 --- a/api/account.go +++ b/api/account.go @@ -68,7 +68,7 @@ func HandleAccountRegister(w http.ResponseWriter, r *http.Request) { return } - if isValidUsername(request.Username) { + if !isValidUsername(request.Username) { http.Error(w, "invalid username", http.StatusBadRequest) return } @@ -116,7 +116,7 @@ func HandleAccountLogin(w http.ResponseWriter, r *http.Request) { return } - if isValidUsername(request.Username) { + if !isValidUsername(request.Username) { http.Error(w, "invalid username", http.StatusBadRequest) return }