remove console statement

pull/9078/head
Agusti Fernandez Pardo 2022-04-04 22:29:45 +02:00
parent 5b3f9ee95c
commit 15cdbb134f
1 changed files with 1 additions and 1 deletions

View File

@ -17,7 +17,7 @@ export const verifyApiKey: NextMiddleware = async (req, res, next) => {
res.status(401).json({ error: "Your api key is not valid" });
throw new Error("No api key found");
}
if (apiKey.expiresAt && apiKey.userId && dateInPast(apiKey.expiresAt, today)) {
if (apiKey.expiresAt && apiKey.userId && dateInPast(today, apiKey.expiresAt)) {
res.setHeader("Calcom-User-ID", apiKey.userId);
await next();
} else res.status(401).json({ error: "Your api key is not valid" });