From dfd6914cd94eed568027c36ff21b18f29ee1fa23 Mon Sep 17 00:00:00 2001 From: Tom Hacohen Date: Fri, 3 May 2019 09:22:40 +0100 Subject: [PATCH] Fix version number when saving events/todos. --- src/pim-types.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pim-types.ts b/src/pim-types.ts index 836a7bb..c06947e 100644 --- a/src/pim-types.ts +++ b/src/pim-types.ts @@ -51,7 +51,7 @@ export class EventType extends ICAL.Event implements PimType { public toIcal() { const comp = new ICAL.Component(['vcalendar', [], []]); comp.updatePropertyWithValue('prodid', '-//iCal.js EteSync Web'); - comp.updatePropertyWithValue('version', '4.0'); + comp.updatePropertyWithValue('version', '2.0'); comp.addSubcomponent(this.component); if (this.timezoneComp) {