We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 44a0fb3 commit 28208c4Copy full SHA for 28208c4
1 file changed
packages/fxa-auth-server/lib/routes/account.ts
@@ -1604,6 +1604,9 @@ export class AccountHandler {
1604
result.hasPassword = account.verifierSetAt > 0;
1605
} else {
1606
const exist = await this.db.accountExists(email);
1607
+ if (!exist) {
1608
+ await this.customs.check(request, email, 'accountStatusCheckFailed');
1609
+ }
1610
result.exists = exist;
1611
}
1612
0 commit comments