diff --git a/server.js b/server.js index 0c933e7..7c6d538 100644 --- a/server.js +++ b/server.js @@ -109,6 +109,7 @@ END:VEVENT // Serve the merged calendar file and refresh if older than an hour app.get('/calendar/:name', async (req, res) => { const calendarName = req.params.name; + const icsFilePath = path.join(MERGED_CALENDARS_DIR, `${calendarName}.ics`); });