Skip to content

Commit

Permalink
Multi value lookup only persisted first lookup value #628 [jansenbe -…
Browse files Browse the repository at this point in the history
… Bert Jansen]
  • Loading branch information
jansenbe committed Nov 16, 2021
1 parent c8e9640 commit 621061f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/sdk/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/).
- Throw more descriptive exceptions when a `PnPContext` is created using the `IPnPContextFactory` while authentication is not properly configured #623 [jansenbe - Bert Jansen]
- Fix: Mixing multiple top level `QueryProperties` statements when one of them has child `QueryProperties` generated a wrong query #625 [jansenbe - Bert Jansen]
- Added `IQueryable` where it still was missing + throw exception when not LINQ query is not possible #627 [jansenbe - Bert Jansen]
- Fix: multi value lookup only persisted first lookup value #628 [jansenbe - Bert Jansen]

## [1.4.0]

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ internal object LookupMultiToValidateUpdateItemJson()

foreach (var item in Values)
{
sb.Append($"{(item as FieldLookupValue).ToValidateUpdateItemJson()};#");
sb.Append($"{(item as FieldLookupValue).ToValidateUpdateItemJson()};#;#");
}

return sb.ToString();
Expand Down

0 comments on commit 621061f

Please sign in to comment.