mirror of
https://codeberg.org/teddit/teddit
synced 2025-02-12 10:00:35 +01:00
Catch errors when invalid data is received from Reddit in the user route
This commit is contained in:
parent
b0ce6c52a6
commit
8d800e490c
@ -206,6 +206,15 @@ userRoutes.get('/u/:user/:kind?', (req, res, next) => {
|
||||
}
|
||||
}
|
||||
);
|
||||
}).catch(error => {
|
||||
console.error(`Something went wrong while fetching data from Reddit API: invalid or non-JSON data was returned.`);
|
||||
return res.render('frontpage', {
|
||||
json: null,
|
||||
http_status_code: 500,
|
||||
http_statustext: "Invalid response from Reddit",
|
||||
user_preferences: req.cookies,
|
||||
instance_config: config,
|
||||
});
|
||||
});
|
||||
} else {
|
||||
console.error(
|
||||
|
Loading…
x
Reference in New Issue
Block a user