From 5b84ee0c09eb45c408164e597428b73d97831bdd Mon Sep 17 00:00:00 2001 From: Ludovic Marcotte Date: Thu, 6 Jul 2017 08:56:30 -0400 Subject: [PATCH] (fix) wrong custom fields identifiers for 3 and 4 --- UI/Contacts/UIxContactEditor.m | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/UI/Contacts/UIxContactEditor.m b/UI/Contacts/UIxContactEditor.m index f9f1ffeaf..60f1e4756 100644 --- a/UI/Contacts/UIxContactEditor.m +++ b/UI/Contacts/UIxContactEditor.m @@ -508,14 +508,14 @@ static Class SOGoContactGCSEntryK = Nil; { elements = [card childrenWithTag: @"custom3"]; [card removeChildren: elements]; - [card addElementWithTag: @"custom1" ofType: nil withValue: o]; + [card addElementWithTag: @"custom3" ofType: nil withValue: o]; } if ((o = [customFields objectForKey: @"4"])) { elements = [card childrenWithTag: @"custom4"]; [card removeChildren: elements]; - [card addElementWithTag: @"custom1" ofType: nil withValue: o]; + [card addElementWithTag: @"custom4" ofType: nil withValue: o]; } }