mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-05-20 19:05:25 +00:00
(fix) properly save email alarms in the db (fixes #3949)
This commit is contained in:
@@ -17,6 +17,7 @@ Bug fixes
|
||||
- [core] use source's domain when none defined and trying to match users (#3523)
|
||||
- [core] handle delegation with no SENT-BY set (#3368)
|
||||
- [core] properly honor the "include in freebusy" setting (#3354)
|
||||
- [core] properly save next email alarm in the database (#3949)
|
||||
- [web] fixed confusion between owner and active user in ACLs management of Administration module
|
||||
- [web] fixed JavaScript exception after renaming an address book
|
||||
- [web] fixed Sieve folder encoding support (#3904)
|
||||
|
||||
@@ -861,7 +861,7 @@ NSNumber *iCalDistantFutureNumber = nil;
|
||||
[row setObject: [NSNumber numberWithInt: 0] forKey: @"c_nextalarm"];
|
||||
|
||||
// Delete old email alarms
|
||||
if (alarm_number >= 0)
|
||||
if (!nextAlarmDate && alarm_number >= 0)
|
||||
[af deleteRecordForEntryWithCName: nameInContainer
|
||||
inCalendarAtPath: [theContainer ocsPath]];
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user