aboutsummaryrefslogtreecommitdiffstats
path: root/hypervideo_dl/extractor/livestream.py
diff options
context:
space:
mode:
Diffstat (limited to 'hypervideo_dl/extractor/livestream.py')
-rw-r--r--hypervideo_dl/extractor/livestream.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/hypervideo_dl/extractor/livestream.py b/hypervideo_dl/extractor/livestream.py
index f591289..45bf26d 100644
--- a/hypervideo_dl/extractor/livestream.py
+++ b/hypervideo_dl/extractor/livestream.py
@@ -176,7 +176,7 @@ class LivestreamIE(InfoExtractor):
return {
'id': broadcast_id,
'formats': formats,
- 'title': self._live_title(stream_info['stream_title']) if is_live else stream_info['stream_title'],
+ 'title': stream_info['stream_title'],
'thumbnail': stream_info.get('thumbnail_url'),
'is_live': is_live,
}
@@ -344,7 +344,7 @@ class LivestreamOriginalIE(InfoExtractor):
is_live = video_data.get('isLive')
info.update({
'id': content_id,
- 'title': self._live_title(info['title']) if is_live else info['title'],
+ 'title': info['title'],
'formats': self._extract_video_formats(video_data, content_id),
'is_live': is_live,
})