From 73e46d7f994c81f83af372f0bae4f9ceb6a67285 Mon Sep 17 00:00:00 2001 From: Ryan Mwangi Date: Tue, 19 Nov 2024 13:32:55 +0300 Subject: [PATCH] feat(prodid): introduce custom PRODID for merged calendars --- src/calendarUtil.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/calendarUtil.js b/src/calendarUtil.js index 8137161..745dc07 100644 --- a/src/calendarUtil.js +++ b/src/calendarUtil.js @@ -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; }