1
0
Fork 0
forked from svrjs/svrjs

Converted one more string to template string

This commit is contained in:
Dorian Niemiec 2024-08-28 07:35:27 +02:00
parent 17614dc6c7
commit 486820e1da

View file

@ -131,7 +131,7 @@ module.exports = (req, res, logFacilities, config, next) => {
(req.parsedURL.search ? req.parsedURL.search : "") +
(req.parsedURL.hash ? req.parsedURL.hash : "");
logFacilities.resmessage(
"URL sanitized: " + req.url + " => " + rewrittenAgainURL,
`URL sanitized: ${req.url} => ${rewrittenAgainURL}`,
);
req.url = rewrittenAgainURL;
try {