aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2018-05-02 01:29:44 +0700
committerSergey M․ <dstftw@gmail.com>2018-05-02 01:29:44 +0700
commita93ce61bd5cbe7779e4eff0f8ab74a8a02211285 (patch)
tree3dfc25f1c429e6bef26d2afc199fe5f4778606a6
parentc18142da6e0e99a7b4c9ab488ddb285ad1e8dad9 (diff)
downloadyoutube-dl-a93ce61bd5cbe7779e4eff0f8ab74a8a02211285.tar.xz
[tunein] Use live title for live streams (closes #16347)
-rw-r--r--youtube_dl/extractor/tunein.py2
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,