Update details uri to have 2016 path

This commit is contained in:
Matthew Taylor 2017-02-15 08:44:28 -05:00
parent 8b772737a3
commit 19757ef730

View file

@ -103,7 +103,7 @@ module.exports.getDaySchedule = function (day) {
cleanedRow[columns[i]] = cur[i];
}
}
cleanedRow['uri'] = '/conference/' + cleanedRow.rowid + '/details';
cleanedRow['uri'] = '/conference/2016/' + cleanedRow.rowid + '/details';
var timeSlot = cleanedRow.Chunk + cleanedRow.Start;
if (typeof prev.timeSlots[timeSlot] === 'undefined') {
prev.timeSlots[timeSlot] = [cleanedRow];