Encode URIs in redirect headers
This commit is contained in:
parent
08407a1a2d
commit
ff14e7d28d
|
@ -51,7 +51,7 @@ const sendRedirect = (res, relativeLocation, maxAge = 0, statusCode = 302) => {
|
||||||
'Content-Type': 'text/html',
|
'Content-Type': 'text/html',
|
||||||
'Content-Length': html.length,
|
'Content-Length': html.length,
|
||||||
'Cache-Control': `public, max-age=${maxAge}`,
|
'Cache-Control': `public, max-age=${maxAge}`,
|
||||||
'Location': location
|
'Location': encodeURI(location)
|
||||||
})
|
})
|
||||||
|
|
||||||
res.end(html)
|
res.end(html)
|
||||||
|
|
Loading…
Reference in New Issue