X-Git-Url: https://git.rapsys.eu/.gitweb.cgi/youtubedl/blobdiff_plain/cb32b5fcf6f680ea9caf47919b33779491b79038..2bdf31482d1573ea437d9fe8ea76db4f1a5beb1a:/youtube_dl/extractor/iqiyi.py?ds=inline
diff --git a/youtube_dl/extractor/iqiyi.py b/youtube_dl/extractor/iqiyi.py
index 4b081bd..cd11aa7 100644
--- a/youtube_dl/extractor/iqiyi.py
+++ b/youtube_dl/extractor/iqiyi.py
@@ -383,9 +383,9 @@ class IqiyiIE(InfoExtractor):
             self._sleep(5, video_id)
 
         self._sort_formats(formats)
-        title = (get_element_by_id('widget-videotitle', webpage) or
-                 clean_html(get_element_by_attribute('class', 'mod-play-tit', webpage)) or
-                 self._html_search_regex(r']+data-videochanged-title="word"[^>]*>([^<]+)', webpage, 'title'))
+        title = (get_element_by_id('widget-videotitle', webpage)
+                 or clean_html(get_element_by_attribute('class', 'mod-play-tit', webpage))
+                 or self._html_search_regex(r']+data-videochanged-title="word"[^>]*>([^<]+)', webpage, 'title'))
 
         return {
             'id': video_id,