Skip to content

Commit 5e24fda

Browse files
committed
fix extended property
1 parent ff9177d commit 5e24fda

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/js/ComplexProperties/ExtendedProperty.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,8 +63,7 @@ export class ExtendedProperty extends ComplexProperty {
6363
"PropertyDefintion is missing");
6464

6565
var stringList: StringList = new StringList(XmlElementNames.Value);
66-
var jsonCollection = EwsServiceJsonReader.ReadAsArray(jsonProperty, key);
67-
stringList.CreateFromXmlJsObjectCollection(jsonCollection, service);
66+
stringList.CreateFromXmlJsObjectCollection(jsonProperty[key], service);
6867
this.value = MapiTypeConverter.ConvertToValue(this.PropertyDefinition.MapiType, stringList.GetEnumerator());
6968
break;
7069
default:

0 commit comments

Comments
 (0)