Fix error comparisons

This commit is contained in:
Deluan 2022-09-30 18:54:25 -04:00
parent 7b0a8f47de
commit db67c1277e
27 changed files with 93 additions and 73 deletions

View file

@ -156,7 +156,7 @@ func createAdminUser(ctx context.Context, ds model.DataStore, username, password
func validateLogin(userRepo model.UserRepository, userName, password string) (*model.User, error) {
u, err := userRepo.FindByUsernameWithPassword(userName)
if err == model.ErrNotFound {
if errors.Is(err, model.ErrNotFound) {
return nil, nil
}
if err != nil {