Rollback previous fix

This commit is contained in:
Francis Lachapelle 2017-11-10 11:25:59 -05:00
parent 00af2613b6
commit 4a40230f23
2 changed files with 1 additions and 3 deletions

1
NEWS
View file

@ -19,7 +19,6 @@ Bug fixes
- [core] increased column size of settings/defaults for MySQL (#4260) - [core] increased column size of settings/defaults for MySQL (#4260)
- [core] fixed yearly recurrence calculator with until date - [core] fixed yearly recurrence calculator with until date
- [core] generalized HTML sanitization to avoid encoding issues when replying/forwarding mails - [core] generalized HTML sanitization to avoid encoding issues when replying/forwarding mails
- [core] don't restore deleted events in attendees calendars
- [web] fixed display of error when the mail editor is in a popup - [web] fixed display of error when the mail editor is in a popup
- [web] attachments are not displayed on IOS (#4150) - [web] attachments are not displayed on IOS (#4150)
- [web] fixed parsing of pasted email addresses from Spreadsheet (#4258) - [web] fixed parsing of pasted email addresses from Spreadsheet (#4258)

View file

@ -252,9 +252,8 @@
[iCalendarToSave addChild: [[newEvent copy] autorelease]]; [iCalendarToSave addChild: [[newEvent copy] autorelease]];
} }
} }
else if (![attendeeObject isNew]) else
{ {
// Only update the event in attendee's calendar if it was already there
iCalendarToSave = [newEvent parent]; iCalendarToSave = [newEvent parent];
} }