[mtv/gametrailers] Change order of title preference
authorPhilipp Hagemeister <phihag@phihag.de>
Thu, 6 Feb 2014 03:15:11 +0000 (04:15 +0100)
committerPhilipp Hagemeister <phihag@phihag.de>
Thu, 6 Feb 2014 03:15:12 +0000 (04:15 +0100)
It looks like the plain title is better again

youtube_dl/extractor/mtv.py

index 4521451ac933baabce786c76813e3e8407298b65..6f5180892756aec148c0e0b6172e007fe291f623 100644 (file)
@@ -82,10 +82,13 @@ class MTVServicesInfoExtractor(InfoExtractor):
             title_el = find_xpath_attr(
                 itemdoc, './/{http://search.yahoo.com/mrss/}category',
                 'scheme', 'urn:mtvn:video_title')
-        if title_el is None:
-            title_el = itemdoc.find('.//{http://search.yahoo.com/mrss/}title')
         if title_el is None:
             title_el = itemdoc.find('.//title')
+            if title_el.text is None:
+                title_el = None
+        if title_el is None:
+            title_el = itemdoc.find('.//{http://search.yahoo.com/mrss/}title')
+
         title = title_el.text
         if title is None:
             raise ExtractorError('Could not find video title')