Fixed empty object getting called
Some checks failed
continuous-integration/drone/pr Build is failing

ref #99
This commit is contained in:
Nicolai Ort 2021-03-26 21:19:58 +01:00
parent 8154e715bb
commit 536900091a

View File

@ -95,7 +95,7 @@ export class CreateUser {
if (!this.email) {
throw new UserEmailNeededError();
}
if (this.username.includes("@")) { throw new UsernameContainsIllegalCharacterError(); }
if (this.username?.includes("@")) { throw new UsernameContainsIllegalCharacterError(); }
let password_strength = passwordStrength(this.password);
if (!password_strength.contains.includes("uppercase")) { throw new PasswordMustContainUppercaseLetterError(); }