瀏覽代碼

[mtv/gametrailers] Change order of title preference

It looks like the plain title is better again
Philipp Hagemeister 11 年之前
父節點
當前提交
1df4229bd7
共有 1 個文件被更改,包括 5 次插入2 次删除
  1. 5 2
      youtube_dl/extractor/mtv.py

+ 5 - 2
youtube_dl/extractor/mtv.py

@@ -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')