diff --git a/IRaCIS.Core.API/_ServiceExtensions/NewtonsoftJson/JSONTimeZoneConverter.cs b/IRaCIS.Core.API/_ServiceExtensions/NewtonsoftJson/JSONTimeZoneConverter.cs index 87fda8456..37853b02a 100644 --- a/IRaCIS.Core.API/_ServiceExtensions/NewtonsoftJson/JSONTimeZoneConverter.cs +++ b/IRaCIS.Core.API/_ServiceExtensions/NewtonsoftJson/JSONTimeZoneConverter.cs @@ -90,8 +90,8 @@ namespace IRaCIS.Core.API if (DateTime.TryParse((string)reader.Value, out dateTime) == false) { - throw new JsonSerializationException($"Could not convert string to DateTime: {reader.Value} Path {reader.Path}"); - //return null; + //throw new JsonSerializationException($"Could not convert string to DateTime: {reader.Value} Path {reader.Path}"); + return null; } }