diff --git a/server/controllers/api/oauth-clients.ts b/server/controllers/api/oauth-clients.ts index b619b78a3..1899dbb02 100644 --- a/server/controllers/api/oauth-clients.ts +++ b/server/controllers/api/oauth-clients.ts @@ -26,7 +26,11 @@ async function getLocalClient (req: express.Request, res: express.Response, next // Don't make this check if this is a test instance if (!isTestOrDevInstance() && req.get('host') !== headerHostShouldBe) { - logger.info('Getting client tokens for host %s is forbidden (expected %s).', req.get('host'), headerHostShouldBe) + logger.info( + 'Getting client tokens for host %s is forbidden (expected %s).', req.get('host'), headerHostShouldBe, + { webserverConfig: CONFIG.WEBSERVER } + ) + return res.fail({ status: HttpStatusCode.FORBIDDEN_403, message: `Getting client tokens for host ${req.get('host')} is forbidden`