Fix NuCache spelling

This commit is contained in:
nzdev
2020-08-04 18:03:08 +12:00
parent d4276dff58
commit 451eacf7cb
6 changed files with 9 additions and 9 deletions

View File

@@ -12,7 +12,7 @@ namespace Umbraco.Web.PublishedCache.NuCache.DataSource
internal class MsgPackContentNestedDataSerializer : IContentNestedDataByteSerializer
{
private MessagePackSerializerOptions _options;
private readonly NucachePropertyOptions _propertyOptions;
private readonly NuCachePropertyOptions _propertyOptions;
public MsgPackContentNestedDataSerializer(INuCachePropertyOptionsFactory propertyOptionsFactory = null)
{
@@ -34,7 +34,7 @@ namespace Umbraco.Web.PublishedCache.NuCache.DataSource
_options = defaultOptions
.WithResolver(resolver)
.WithCompression(MessagePackCompression.Lz4BlockArray);
_propertyOptions = propertyOptionsFactory?.GetNuCachePropertyOptions() ?? new NucachePropertyOptions();
_propertyOptions = propertyOptionsFactory?.GetNuCachePropertyOptions() ?? new NuCachePropertyOptions();
}
public string ToJson(string serialized)