Skip to content

Commit

Permalink
Merge of #541. Thanks @magarma
Browse files Browse the repository at this point in the history
  • Loading branch information
jansenbe committed Dec 2, 2021
1 parent bcff174 commit d98ed80
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/lib/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/).
- Fixing issue when trying to export datarow for list instances #531 [magarma - Miguel Angel García Martínez]
- Fix issues exporting channels and tabs with TeamsAppId and Description #532 [magarma - Miguel Angel García Martínez]
- Changed the property we get when exporting Teams apps #533 [magarma - Miguel Angel García Martínez]
- Fix for Null Exception when trying to set a term value in a file, listItem, and the term label contains a comma #541 [magarma - Miguel Angel García Martínez]

## [1.7.0]

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -420,8 +420,10 @@ public static void UpdateListItem(ListItem item, TokenParser parser, IDictionary
clonedContext.Load(taxonomyItem);
clonedContext.ExecuteQueryRetry();
}
if (taxonomyItem!=null)
if (taxonomyItem != null)
{
terms.Add(new KeyValuePair<Guid, string>(taxonomyItem.Id, taxonomyItem.Name));
}
}

TaxonomyField taxField = context.CastTo<TaxonomyField>(field);
Expand Down

0 comments on commit d98ed80

Please sign in to comment.