feat(prodid): introduce custom PRODID for merged calendars

This commit is contained in:
Ryan Mwangi 2024-11-19 13:32:55 +03:00
parent d2b0234b4b
commit 73e46d7f99
1 changed files with 1 additions and 0 deletions

View File

@ -31,6 +31,7 @@ export function createCalendarComponent(name) {
const calendarComponent = new ICAL.Component(['vcalendar', [], []]);
calendarComponent.updatePropertyWithValue('name', name);
calendarComponent.updatePropertyWithValue('version', '2.0');
calendarComponent.updatePropertyWithValue('prodid', '-//CalMerge//Calendar Merger 1.0//EN');
return calendarComponent;
}