Add line breaks
This commit is contained in:
parent
cbb94d5e55
commit
c335810978
1 changed files with 4 additions and 0 deletions
|
@ -49,6 +49,7 @@ export default (req, res) => {
|
|||
action = false,
|
||||
saga = false,
|
||||
} = httpContext.get('routeData');
|
||||
|
||||
if (action === 'fallback') {
|
||||
res.status(404);
|
||||
}
|
||||
|
@ -117,13 +118,16 @@ export default (req, res) => {
|
|||
.then(() => {
|
||||
// redirect if request does not use canonical url
|
||||
const canonicalUrl = getCanonicalUrlFromShow(store.getState().show);
|
||||
|
||||
if (!canonicalUrl) {
|
||||
res.status(404);
|
||||
}
|
||||
|
||||
if (canonicalUrl && canonicalUrl !== req.originalUrl) {
|
||||
console.log(`redirecting ${req.originalUrl} to ${canonicalUrl}`);
|
||||
res.redirect(canonicalUrl);
|
||||
}
|
||||
|
||||
return renderPage(store)
|
||||
});
|
||||
} else {
|
||||
|
|
Loading…
Reference in a new issue