Преглед на файлове

commit: fix null reference

HOME преди 5 години
родител
ревизия
9b1b844f3d
променени са 1 файла, в които са добавени 8 реда и са изтрити 1 реда
  1. 8 1
      Rac.Core/Models/Response.cs

+ 8 - 1
Rac.Core/Models/Response.cs

@@ -23,7 +23,14 @@ namespace Rac.Models
 
         public bool GetHtmlDocument(out IHtmlDocument html)
         {
-            var ct = new ContentType(ContentType);
+            var contentType = ContentType;
+            if (null == contentType)
+            {
+                html = null;
+                return false;
+            }
+
+            var ct = new ContentType(contentType);
             if (ct.MediaType != "text/html")
             {
                 html = null;