(fix) wrong custom fields identifiers for 3 and 4

This commit is contained in:
Ludovic Marcotte 2017-07-06 08:56:30 -04:00
parent 2c9c1e0d01
commit 5b84ee0c09

View file

@ -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];
}
}