From ca8ca913a8c0b82bd797b49e9d708cfaee2a100f Mon Sep 17 00:00:00 2001 From: Agusti Fernandez Pardo Date: Fri, 15 Apr 2022 16:55:55 +0200 Subject: [PATCH] add else if to api key request --- lib/helpers/verifyApiKey.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/helpers/verifyApiKey.ts b/lib/helpers/verifyApiKey.ts index 653d8067ee..9a40ce5f25 100644 --- a/lib/helpers/verifyApiKey.ts +++ b/lib/helpers/verifyApiKey.ts @@ -15,7 +15,7 @@ const today = new Date(); export const verifyApiKey: NextMiddleware = async (req, res, next) => { const pathIsDocs = req.url?.startsWith("/docs"); if (pathIsDocs) await next(); - if (!req.query.apiKey) res.status(401).json({ message: "No API key provided" }); + else if (!req.query.apiKey) res.status(401).json({ message: "No API key provided" }); const strippedApiKey = `${req.query.apiKey}`.replace(process.env.API_KEY_PREFIX || "cal_", ""); const hashedKey = hashAPIKey(strippedApiKey);