remove second declaration of the filename
This commit is contained in:
parent
0a9cddcbaa
commit
63b1e9b079
|
@ -39,7 +39,7 @@ app.post('/merge', async (req, res) => {
|
||||||
if (!linkGroupName || !calendars || !Array.isArray(calendars) || calendars.length === 0) {
|
if (!linkGroupName || !calendars || !Array.isArray(calendars) || calendars.length === 0) {
|
||||||
return res.status(400).json({ error: 'Invalid input. Please provide a linkGroupName and at least one calendar.' });
|
return res.status(400).json({ error: 'Invalid input. Please provide a linkGroupName and at least one calendar.' });
|
||||||
}
|
}
|
||||||
|
|
||||||
// Sanitize the linkGroupName to create a valid filename
|
// Sanitize the linkGroupName to create a valid filename
|
||||||
const sanitizedLinkGroupName = sanitizeFilename(linkGroupName);
|
const sanitizedLinkGroupName = sanitizeFilename(linkGroupName);
|
||||||
const filename = `${sanitizedLinkGroupName}.ics`;
|
const filename = `${sanitizedLinkGroupName}.ics`;
|
||||||
|
@ -86,8 +86,7 @@ app.post('/merge', async (req, res) => {
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
// Save merged calendar to .ics file with unique identifier
|
// Save merged calendar to .ics file with the sanitized linkGroupName
|
||||||
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