Fix error port display, again

This commit is contained in:
shamoon
2023-05-23 03:37:56 -07:00
parent b960813ed9
commit 1b984abd91
2 changed files with 4 additions and 4 deletions

View File

@@ -58,11 +58,11 @@ export default async function genericProxyHandler(req, res, map) {
if (status >= 400) {
logger.debug(
"HTTP Error %d calling %s//%s:%s%s...",
"HTTP Error %d calling %s//%s%s%s...",
status,
url.protocol,
url.hostname,
url.port,
url.port ? `:${url.port}` : '',
url.pathname
);
return res.status(status).json({error: {message: "HTTP Error", url: sanitizeErrorURL(url), resultData}});