From 50ad583698a15cd524f1381b13c3cf20aedc5a9f Mon Sep 17 00:00:00 2001 From: Ryan Mwangi Date: Thu, 24 Oct 2024 15:19:15 +0300 Subject: [PATCH] define jsonFilePath --- server.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server.js b/server.js index 7c6d538..2ca951a 100644 --- a/server.js +++ b/server.js @@ -110,7 +110,7 @@ END:VEVENT app.get('/calendar/:name', async (req, res) => { const calendarName = req.params.name; const icsFilePath = path.join(MERGED_CALENDARS_DIR, `${calendarName}.ics`); - + const jsonFilePath = path.join(MERGED_CALENDARS_DIR, `${calendarName}.json`); });