1
0
Fork 0

use a fixed URL for the merged calendar

This commit is contained in:
Ryan Mwangi 2024-10-08 22:22:35 +03:00
parent 3d31d039d8
commit 37108217d8
1 changed files with 2 additions and 2 deletions

View File

@ -172,7 +172,7 @@ END:VEVENT
fs.writeFileSync(filename, icalString); fs.writeFileSync(filename, icalString);
// Generate a unique URL for the merged calendar // Generate a unique URL for the merged calendar
const mergedCalendarUrl = `${req.protocol}://${req.get('host')}/${filename}`; const mergedCalendarUrl = `http://localhost:3000/${filename}`;
// Store the merged calendar URL in a file // Store the merged calendar URL in a file
fs.writeFileSync(mergedCalendarUrlFile, mergedCalendarUrl); fs.writeFileSync(mergedCalendarUrlFile, mergedCalendarUrl);