diff options
Diffstat (limited to 'XmlObject.cpp')
-rw-r--r-- | XmlObject.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/XmlObject.cpp b/XmlObject.cpp index d588c5f..d103113 100644 --- a/XmlObject.cpp +++ b/XmlObject.cpp @@ -84,6 +84,8 @@ MediaType XmlObject::GetNodeValueAsMediaType(Poco::XML::Node* pNode) type = SEASON; } else if (Poco::icompare(sType, "episode") == 0) { type = EPISODE; + } else if (Poco::icompare(sType, "clip") == 0) { + type = CLIP; } } return type; |