(fix) wrong custom fields identifiers for 3 and 4

pull/237/head
Ludovic Marcotte 2017-07-06 08:56:30 -04:00
parent 2c9c1e0d01
commit 5b84ee0c09
1 changed files with 2 additions and 2 deletions

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