Fix possible exception when retrieving reminder

Fixes #2647
Fixes #2648
pull/25/head
Francis Lachapelle 2014-03-10 14:47:01 -04:00
parent 78636f0396
commit cbd22762c3
2 changed files with 10 additions and 4 deletions

12
NEWS
View File

@ -1,3 +1,9 @@
2.2.X (2014-03-DD)
------------------
Bug fixes
- fixed possible exception when retrieving the default event reminder value on 64bit architectures (#2647, #2648)
2.2.1 (2014-03-07)
------------------
@ -13,9 +19,9 @@ Bug fixes
- fixed wrong date format leading to Android email syncing issues (#2609)
- fixed possible exception when retrieving the default event reminder value (#2624)
- fixed encoding of mail folder name when creating a subfolder (#2637)
- fixed returned date format for email messages in Active Sync
- fixed missing 'name part' in address for email messages in Active Sync
- fixed race condition when syncing huge amount of deleted messages over Active Sync
- fixed returned date format for email messages in ActiveSync
- fixed missing 'name part' in address for email messages in ActiveSync
- fixed race condition when syncing huge amount of deleted messages over ActiveSync
- fixed encoding of string as CSS identifier when the string starts with a digit
- fixed auto-completion popupmenu when UID is a digit

View File

@ -568,7 +568,7 @@ static NSArray *reminderValues = nil;
- (NSString *) reminder
{
NSString *value;
int index;
NSUInteger index;
value = [userDefaults calendarDefaultReminder];
if (value != nil)