Skip to content

Commit

Permalink
Fix for token parsing of folder property bag key
Browse files Browse the repository at this point in the history
  • Loading branch information
patrikhellgren committed Sep 21, 2020
1 parent e7c10c5 commit 9b8a345
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -2230,7 +2230,7 @@ private void CreateFolderInList(ListInfo list, Microsoft.SharePoint.Client.Folde
{
foreach (var p in folder.PropertyBagEntries)
{
currentFolder.Properties[p.Key] = parser.ParseString(p.Value);
currentFolder.Properties[parser.ParseString(p.Key)] = parser.ParseString(p.Value);
}
currentFolder.Update();
}
Expand Down

0 comments on commit 9b8a345

Please sign in to comment.