diff --git a/src/FilterLists.Api/DependencyInjection/Extensions/ConfigureServicesCollection.cs b/src/FilterLists.Api/DependencyInjection/Extensions/ConfigureServicesCollection.cs index 4ffde532b..40d351559 100644 --- a/src/FilterLists.Api/DependencyInjection/Extensions/ConfigureServicesCollection.cs +++ b/src/FilterLists.Api/DependencyInjection/Extensions/ConfigureServicesCollection.cs @@ -37,8 +37,8 @@ private static void AddMvcCustom(this IServiceCollection services) => .SetCompatibilityVersion(CompatibilityVersion.Version_2_1) .AddJsonOptions(opts => { - opts.SerializerSettings.NullValueHandling = NullValueHandling.Ignore; - opts.SerializerSettings.ContractResolver = new SkipEmptyContractResolver(); + //opts.SerializerSettings.NullValueHandling = NullValueHandling.Ignore; + //opts.SerializerSettings.ContractResolver = new SkipEmptyContractResolver(); }); private static void AddRoutingCustom(this IServiceCollection services) =>