]> gitweb @ CieloNegro.org - youtube-dl.git/blobdiff - youtube_dl/extractor/mtv.py
[vesti] Fix extraction and support more link formats (Closes #2517)
[youtube-dl.git] / youtube_dl / extractor / mtv.py
index 6f5180892756aec148c0e0b6172e007fe291f623..5447b6c0cab098b895eda0e9f2b3b266fb65a7b0 100644 (file)
@@ -82,12 +82,12 @@ 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: