mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-05-19 18:35:25 +00:00
fix(calendar): Do not send tentative participation mail when user open mail or add ics to calendar app
This commit is contained in:
@@ -2216,8 +2216,10 @@ inRecurrenceExceptionsForEvent: (iCalEvent *) theEvent
|
||||
// we receive an external invitation (IMIP/ITIP) and we accept it
|
||||
// from a CUA - it gets added to a specific CalDAV calendar using a PUT
|
||||
//
|
||||
else if ([event userIsAttendee: ownerUser] && [self _shouldScheduleEvent: [event userAsAttendee: ownerUser]])
|
||||
{
|
||||
else if ([event userIsAttendee: ownerUser]
|
||||
&& [self _shouldScheduleEvent: [event userAsAttendee: ownerUser]]
|
||||
&& iCalPersonPartStatNeedsAction != [[event userAsAttendee: ownerUser] participationStatus])
|
||||
{
|
||||
[self sendResponseToOrganizer: event
|
||||
from: ownerUser];
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user