Skip to content

Commit 561febe

Browse files
authored
Merge pull request #355 from gautamsi/fix-extended-property
fix extended property
2 parents ff9177d + 5e24fda commit 561febe

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)