diff options
author | Remita Amine <remitamine@gmail.com> | 2020-12-24 13:33:12 +0100 |
---|---|---|
committer | Remita Amine <remitamine@gmail.com> | 2020-12-24 13:33:12 +0100 |
commit | f9e6aa1dcfa5e5731f04b407ac00ef24009891a3 (patch) | |
tree | 67310b145662bec02285e87d3323b66dd9bfe6e6 | |
parent | f83db9064b13bdf025b0710b5da00e91025403e9 (diff) |
[sonyliv] fix title for movies
-rw-r--r-- | youtube_dl/extractor/sonyliv.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/sonyliv.py b/youtube_dl/extractor/sonyliv.py index b460b343a..fedfceb62 100644 --- a/youtube_dl/extractor/sonyliv.py +++ b/youtube_dl/extractor/sonyliv.py @@ -94,7 +94,7 @@ class SonyLIVIE(InfoExtractor): '1.6', 'IN/DETAIL/' + video_id, video_id)['containers'][0]['metadata'] title = metadata['title'] episode = metadata.get('episodeTitle') - if episode: + if episode and title != episode: title += ' - ' + episode return { |