Fix saving of email address for notifications

Fixes #4630
pull/249/head
Francis Lachapelle 2019-02-13 17:32:05 -05:00
parent ee40ee6687
commit ce7087fd6c
2 changed files with 5 additions and 4 deletions

1
NEWS
View File

@ -15,6 +15,7 @@ Bug fixes
- [web] fixed CAS session timeout handling during XHR requests (#4468)
- [web] reflect active locale in HTML lang attribute (#4660)
- [web] allow scroll of login page on small screen (#4035)
- [web] fixed saving of email address for external calendar notifications (#4630)
- [core] ignore transparent events in time conflict validation (#4539)
- [core] fixed yearly recurrence calculator when starting from previous year

View File

@ -131,11 +131,11 @@
o = [values objectForKey: @"notifyUserOnPersonalModifications"];
if ([o isKindOfClass: [NSNumber class]])
[calendar setNotifyUserOnPersonalModifications: [o boolValue]];
o = [values objectForKey: @"notifiedUserOnPersonalModifications"];
if ([o isKindOfClass: [NSString class]])
[calendar setNotifiedUserOnPersonalModifications: o];
}
o = [params objectForKey: @"notifiedUserOnPersonalModifications"];
if ([o isKindOfClass: [NSString class]])
[calendar setNotifiedUserOnPersonalModifications: o];
}
NS_HANDLER
{