forked from svrjs/svrjs
Converted one more string to template string
This commit is contained in:
parent
17614dc6c7
commit
486820e1da
1 changed files with 1 additions and 1 deletions
|
@ -131,7 +131,7 @@ module.exports = (req, res, logFacilities, config, next) => {
|
||||||
(req.parsedURL.search ? req.parsedURL.search : "") +
|
(req.parsedURL.search ? req.parsedURL.search : "") +
|
||||||
(req.parsedURL.hash ? req.parsedURL.hash : "");
|
(req.parsedURL.hash ? req.parsedURL.hash : "");
|
||||||
logFacilities.resmessage(
|
logFacilities.resmessage(
|
||||||
"URL sanitized: " + req.url + " => " + rewrittenAgainURL,
|
`URL sanitized: ${req.url} => ${rewrittenAgainURL}`,
|
||||||
);
|
);
|
||||||
req.url = rewrittenAgainURL;
|
req.url = rewrittenAgainURL;
|
||||||
try {
|
try {
|
||||||
|
|
Reference in a new issue