|
@@ -23,7 +23,14 @@ namespace Rac.Models
|
|
|
|
|
|
public bool GetHtmlDocument(out IHtmlDocument html)
|
|
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")
|
|
if (ct.MediaType != "text/html")
|
|
{
|
|
{
|
|
html = null;
|
|
html = null;
|