Fixed the HasImage and HasVideo properties

This commit is contained in:
ScottIsAFool
2013-12-07 17:30:53 +00:00
parent 425faf7a90
commit c1981bbb24
+2 -2
View File
@@ -165,7 +165,7 @@ namespace PocketSharp.Models
{
get
{
return _HasImage == PocketBoolean.Yes;
return _HasImage == PocketBoolean.Yes || _HasImage == PocketBoolean.IsType;
}
}
@@ -180,7 +180,7 @@ namespace PocketSharp.Models
{
get
{
return _HasVideo == PocketBoolean.Yes;
return _HasVideo == PocketBoolean.Yes || _HasVideo == PocketBoolean.IsType;
}
}