Merge branch 'v8/8.17' into v9/feature/merge_v8.17-rc

This commit is contained in:
Ronald Barendse
2021-09-07 12:10:58 +02:00
335 changed files with 9119 additions and 2275 deletions

View File

@@ -5,7 +5,7 @@ using Newtonsoft.Json;
namespace Umbraco.Cms.Infrastructure.Serialization
{
/// <summary>
/// When applied to a dictionary with a string key, will ensure the deserialized string keys are interned
/// When applied to a dictionary with a string key, will ensure the deserialized string keys are interned
/// </summary>
/// <typeparam name="TValue"></typeparam>
/// <remarks>
@@ -24,7 +24,7 @@ namespace Umbraco.Cms.Infrastructure.Serialization
{
if (reader.TokenType == JsonToken.StartObject)
{
var dictionary = new Dictionary<string, TValue>();
var dictionary = Create(objectType);
while (reader.Read())
{
switch (reader.TokenType)