소스 검색

[tunein] Use live title for live streams (closes #16347)

Sergey M․ 7 년 전
부모
커밋
a93ce61bd5
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      youtube_dl/extractor/tunein.py

+ 1 - 1
youtube_dl/extractor/tunein.py

@@ -62,7 +62,7 @@ class TuneInBaseIE(InfoExtractor):
 
         return {
             'id': content_id,
-            'title': title,
+            'title': self._live_title(title) if is_live else title,
             'formats': formats,
             'thumbnail': thumbnail,
             'location': location,