Merge branch 'fix/json-reader-extensions' of Common/Utils into ConnectPro_v1.3

This commit is contained in:
Chris Cameron
2019-05-22 17:45:08 +00:00
committed by Gogs

View File

@@ -146,7 +146,7 @@ namespace ICD.Common.Utils.Extensions
if (extends == null) if (extends == null)
throw new ArgumentNullException("extends"); throw new ArgumentNullException("extends");
return extends.Value as string; return extends.Value == null ? null : extends.Value.ToString();
} }
/// <summary> /// <summary>