convox / convox

Nested if can be replaced with else if CRT-A0011
Anti-pattern
Major
12 hours ago10 months old
can replace 'else {if cond {}}' with 'else if cond {}'
 67				http.Error(w, "Unauthorized", http.StatusUnauthorized)
 68				return
 69			}
 70		} else { 71			if password != p.Password {
 72				http.Error(w, "Unauthorized", http.StatusUnauthorized)
 73				return