Fix saving address book properties

pull/250/head
Francis Lachapelle 2019-03-19 14:41:02 -04:00
parent da76344983
commit 597f6366ff
2 changed files with 2 additions and 1 deletions

1
NEWS
View File

@ -10,6 +10,7 @@ Bug fixes
- [web] lowered size of headings on small screens
- [web] fixed scrolling in calendars list on Android
- [web] keep center list of Calendar module visible on small screens
- [web] check for duplicate name only if address book name is changed
- [core] allow super users to modify any event (#4216)
- [core] correctly handle the full cert chain in S/MIME
- [core] handle multidays events in freebusy data

View File

@ -72,7 +72,7 @@
NS_DURING
{
o = [params objectForKey: @"name"];
if ([o isKindOfClass: [NSString class]])
if ([o isKindOfClass: [NSString class]] && ![o isEqualToString: [addressbook displayName]])
[addressbook renameTo: o];
o = [params objectForKey: @"synchronize"];