@ -226,6 +226,7 @@ class ContactEdit extends React.Component {
let comp = contact.comp;
comp.updatePropertyWithValue('prodid', '-//iCal.js EteSync Web');
comp.updatePropertyWithValue('version', '4.0');
comp.updatePropertyWithValue('uid', this.state.uid);
comp.updatePropertyWithValue('fn', this.state.fn);
@ -22,6 +22,7 @@ export class EventType extends ICAL.Event {
toIcal() {
let comp = new ICAL.Component(['vcalendar', [], []]);
comp.addSubcomponent(this.component);
return comp.toString();