diff --git a/SoObjects/Appointments/SOGoCalendarComponent.m b/SoObjects/Appointments/SOGoCalendarComponent.m index 9c63ec46c..35c2832b8 100644 --- a/SoObjects/Appointments/SOGoCalendarComponent.m +++ b/SoObjects/Appointments/SOGoCalendarComponent.m @@ -37,6 +37,7 @@ #import #import #import +#import #import #import #import @@ -142,6 +143,16 @@ return aclManager; } +- (void) setIsNew: (BOOL) newIsNew +{ + [super setIsNew: newIsNew]; +} + +- (BOOL) isNew +{ + return [super isNew]; +} + - (NSException *) changeParticipationStatus: (NSString *) newPartStat withDelegate: (iCalPerson *) delegate alarm: (iCalAlarm *) alarm @@ -755,7 +766,7 @@ [headerMap setObject: @"quoted-printable" forKey: @"content-transfer-encoding"]; bodyPart = [NGMimeBodyPart bodyPartWithHeader: headerMap]; - [bodyPart setBody: [objectData dataByEncodingQuotedPrintable]]; + [bodyPart setBody: objectData]; return bodyPart; }