diff options
author | Sergey M․ <dstftw@gmail.com> | 2018-05-02 01:29:44 +0700 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2018-05-02 01:29:44 +0700 |
commit | a93ce61bd5cbe7779e4eff0f8ab74a8a02211285 (patch) | |
tree | 3dfc25f1c429e6bef26d2afc199fe5f4778606a6 /youtube_dl/extractor | |
parent | c18142da6e0e99a7b4c9ab488ddb285ad1e8dad9 (diff) |
[tunein] Use live title for live streams (closes #16347)
Diffstat (limited to 'youtube_dl/extractor')
-rw-r--r-- | youtube_dl/extractor/tunein.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/tunein.py b/youtube_dl/extractor/tunein.py index 7e51de89e..c7a5f5a63 100644 --- a/youtube_dl/extractor/tunein.py +++ b/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, |