Removed buggy slash

This commit is contained in:
Thomas Forgione 2018-12-04 15:00:34 +01:00
parent 1a2b7ac714
commit 800933b83d
No known key found for this signature in database
GPG Key ID: 203DAEA747F48F41
1 changed files with 1 additions and 1 deletions

View File

@ -204,7 +204,7 @@ module.exports.histogramData = function(req, res, render, next) {
}
module.exports.calendar = redirectIfNotLogged('/calendar', function(req, res, render) {
module.exports.calendar = redirectIfNotLogged('calendar', function(req, res, render) {
res.locals.calendarUrl = getUrl('calendarData');
render('calendar.pug');
});