]> jfr.im git - yt-dlp.git/blobdiff - yt_dlp/extractor/rtve.py
[extractor] Standardize `_live_title`
[yt-dlp.git] / yt_dlp / extractor / rtve.py
index 59832eeac813ec901008f0735ad6ffe32e8dca20..0654fb08b5ac94a42fd43d62fe8c52a42e5750b4 100644 (file)
@@ -160,7 +160,7 @@ def _real_extract(self, url):
 
         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 @@ def _real_extract(self, url):
 
         return {
             'id': video_id,
-            'title': self._live_title(title),
+            'title': title,
             'formats': self._extract_png_formats(vidplayer_id),
             'is_live': True,
         }