Commit 78329c24 authored by Rosanny Sihombing's avatar Rosanny Sihombing
Browse files

add customized error when user data is not found

parent a9b0353c
...@@ -106,10 +106,14 @@ export = function (app:any, config:any, passport:any, lang:string) { ...@@ -106,10 +106,14 @@ export = function (app:any, config:any, passport:any, lang:string) {
res.redirect('/login') res.redirect('/login')
} else { } else {
let loggedInUser = await getLoggedInUserData(req.user.email) let loggedInUser = await getLoggedInUserData(req.user.email)
if (!loggedInUser) {
res.render(lang+'/account/home', { console.error("user data is not found")
user: loggedInUser res.status(500).render(lang+'/500', { error: "Your data is not found. Please try again." })
}); } else {
res.render(lang+'/account/home', {
user: loggedInUser
});
}
} }
}); });
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment