1.0.14 Package Updates and Assets fix

This commit is contained in:
Allan Carr
2025-07-23 17:59:13 -07:00
parent d2bf897e2f
commit b23e446ed3
12 changed files with 216 additions and 57 deletions

View File

@@ -19,7 +19,7 @@ export default function ValidateImsToken(req: Request, res: Response, next: Next
const token = req.headers.ims_token || req.headers["ims-token"] || req.headers["x-ims-token"];
if (token !== IMS_TOKEN) {
logger.warn("Invalid IMS token provided.", { provided: token });
logger.warning("Invalid IMS token provided.", { provided: token });
res.sendStatus(401);
return;
}