Browse Source

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

Sergey M․ 7 năm trước cách đây
mục cha
commit
a93ce61bd5
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  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,