|
|
@@ -75,7 +75,6 @@ export class LdapAuthenticationHandler implements IAuthenticationHandler {
|
|
|
|
|
|
public async tryLogin(username: string, password: string, totp?: string): Promise<boolean | null> {
|
|
|
const account = await this.tryBind(username, password);
|
|
|
- console.log(account);
|
|
|
if (!account)
|
|
|
return null;
|
|
|
return TotpChecker.ValidateTotp(account.totp, totp);
|