forked from ryanmwangi/CalMerger
Save merged calendar to file with unique identifier
This commit is contained in:
parent
6c9af1f4e4
commit
84f4d4b855
|
@ -73,8 +73,8 @@ app.post('/merge', async (req, res) => {
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
||||||
// Save merged calendar to file
|
// Save merged calendar to file with unique identifier
|
||||||
const filename = `merged-${Date.now()}.ics`;
|
const filename = `${calendarId}.ics`;
|
||||||
let icalString = `BEGIN:VCALENDAR
|
let icalString = `BEGIN:VCALENDAR
|
||||||
VERSION:2.0
|
VERSION:2.0
|
||||||
CALSCALE:GREGORIAN
|
CALSCALE:GREGORIAN
|
||||||
|
|
Loading…
Reference in New Issue