aboutsummaryrefslogtreecommitdiffstats
path: root/yt_dlp/extractor/rtve.py
diff options
context:
space:
mode:
Diffstat (limited to 'yt_dlp/extractor/rtve.py')
-rw-r--r--yt_dlp/extractor/rtve.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/yt_dlp/extractor/rtve.py b/yt_dlp/extractor/rtve.py
index 59832eeac..0654fb08b 100644
--- a/yt_dlp/extractor/rtve.py
+++ b/yt_dlp/extractor/rtve.py
@@ -160,7 +160,7 @@ class RTVEALaCartaIE(InfoExtractor):
return {
'id': video_id,
- 'title': self._live_title(title) if is_live else title,
+ 'title': title,
'formats': formats,
'thumbnail': info.get('image'),
'subtitles': subtitles,
@@ -230,7 +230,7 @@ class RTVELiveIE(RTVEALaCartaIE):
return {
'id': video_id,
- 'title': self._live_title(title),
+ 'title': title,
'formats': self._extract_png_formats(vidplayer_id),
'is_live': True,
}