fix: #9698, pass along query params in redirect

v1.18.x
Barış Soner Uşaklı 4 years ago
parent 4c67592f55
commit 9de64bf516

@ -27,7 +27,8 @@ Users.redirectBySlug = async (req, res) => {
if (uid) {
const path = req.path.split('/').slice(3).join('/');
res.redirect(308, nconf.get('relative_path') + encodeURI(`/api/v3/users/${uid}/${path}`));
const urlObj = new URL(nconf.get('url') + req.url);
res.redirect(308, nconf.get('relative_path') + encodeURI(`/api/v3/users/${uid}/${path}${urlObj.search}`));
} else {
helpers.formatApiResponse(404, res);
}

Loading…
Cancel
Save