Moved views around a bit

This commit is contained in:
YourFriendlyNeighborhoodDealer 2019-08-14 10:46:22 +02:00
parent da9c73b5cc
commit 0b5141e7d7
14 changed files with 12 additions and 12 deletions

View file

@ -60,7 +60,7 @@ app.get('/', function (req, res) {
})
app.get('*', function (req, res) {
res.render('404')
res.render('shared/404')
res.status(404)
// utils.AppendToFile(logger.GetDateString() + ": " + "404 GET", logFile);
})