aboutsummaryrefslogtreecommitdiffstats
path: root/yt_dlp/extractor/cspan.py
diff options
context:
space:
mode:
Diffstat (limited to 'yt_dlp/extractor/cspan.py')
-rw-r--r--yt_dlp/extractor/cspan.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/yt_dlp/extractor/cspan.py b/yt_dlp/extractor/cspan.py
index 84393627a..1184633f5 100644
--- a/yt_dlp/extractor/cspan.py
+++ b/yt_dlp/extractor/cspan.py
@@ -275,8 +275,7 @@ class CSpanCongressIE(InfoExtractor):
self._search_regex(r'jwsetup\s*=\s*({(?:.|\n)[^;]+});', webpage, 'player config'),
video_id, transform_source=js_to_json)
- title = (self._og_search_title(webpage, default=None)
- or self._html_extract_title(webpage, 'video title'))
+ title = self._generic_title('', webpage)
description = (self._og_search_description(webpage, default=None)
or self._html_search_meta('description', webpage, 'description', default=None))