diff options
author | Puyodead1 <puyodead@protonmail.com> | 2023-02-24 07:45:29 -0500 |
---|---|---|
committer | Puyodead1 <puyodead@protonmail.com> | 2023-02-24 07:45:29 -0500 |
commit | a22cdaaac62b888997fae37a285c68e056c01e16 (patch) | |
tree | c22b502b5e6f79d152af4551ddb6b8a4abe0a24b /src/api/routes | |
parent | Merge pull request #984 from fosscord/dependabot/npm_and_yarn/http-cache-sema... (diff) | |
download | server-a22cdaaac62b888997fae37a285c68e056c01e16.tar.xz |
fix a few issues with emails
Diffstat (limited to 'src/api/routes')
-rw-r--r-- | src/api/routes/auth/verify/index.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/api/routes/auth/verify/index.ts b/src/api/routes/auth/verify/index.ts index cdbd371a..ac12bbb7 100644 --- a/src/api/routes/auth/verify/index.ts +++ b/src/api/routes/auth/verify/index.ts @@ -45,7 +45,7 @@ router.post( const config = Config.get(); - if (config.register.requireCaptcha) { + if (config.register.requireCaptcha && config.security.captcha.enabled) { const { sitekey, service } = config.security.captcha; if (!captcha_key) { |