Browse Source

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

master-ytdl-org
Sergey M․ 6 years ago
parent
commit
a93ce61bd5
No known key found for this signature in database GPG Key ID: 2C393E0F18A9236D
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      youtube_dl/extractor/tunein.py

+ 1
- 1
youtube_dl/extractor/tunein.py View File

@ -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,


Loading…
Cancel
Save