Skip to content

Commit 9a701b2

Browse files
committed
Merge branch 'fix/usermulti' of https://github.com/eduardpaul/pnpcore into pr1387
2 parents 7aad1aa + d68ce9e commit 9a701b2

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

src/sdk/PnP.Core/Model/SharePoint/Core/Internal/FieldUserValue.cs

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,14 @@ internal override IFieldValue FromListDataAsStream(Dictionary<string, string> pr
162162

163163
if (properties.ContainsKey("title"))
164164
{
165-
Title = properties["title"];
165+
Title = properties["title"];
166+
LookupValue = properties["title"];
167+
}
168+
169+
// when using UserMulti fields the value is stored in the value property
170+
if (properties.ContainsKey(properties["value"]))
171+
{
172+
LookupValue = properties["value"];
166173
}
167174

168175
if (properties.ContainsKey("sip"))

0 commit comments

Comments
 (0)