Fix tournament creation.

This commit is contained in:
2019-05-27 23:04:06 +02:00
parent b8d49cea69
commit c88465c083
4 changed files with 18 additions and 4 deletions

View File

@@ -30,7 +30,7 @@ namespace LaDOSE.Business.Service
// check if password is correct
if (!VerifyPasswordHash(password, user.PasswordHash, user.PasswordSalt))
return null;
// authentication successful
return user;
}