fix: fix outgoing url on error page

also refactor some related code
This commit is contained in:
zyachel 2023-01-15 21:41:09 +05:30
parent 44229f8702
commit 595b720ee1
9 changed files with 32 additions and 35 deletions

View file

@ -35,9 +35,8 @@ const sendErrorResponse = (err, req, res, devMode = false) => {
},
meta: {
title: 'Error',
url: `${req.urlObj.origin}${req.urlObj.pathname}`,
url: req.urlObj,
imageUrl: `${req.urlObj.origin}/icon.svg`,
urlObj: req.urlObj,
description: `ERROR: ${err.message}. Please try again later.`,
},
});