diff --git a/yt_dlp/extractor/videocampus_sachsen.py b/yt_dlp/extractor/videocampus_sachsen.py index d68801708..f3bfe9443 100644 --- a/yt_dlp/extractor/videocampus_sachsen.py +++ b/yt_dlp/extractor/videocampus_sachsen.py @@ -211,7 +211,7 @@ def _real_extract(self, url): elif source.get('src'): formats.append({'url': source.get('src')}) - thumbnail = f'https://{host}{metadata.get('poster')}' + thumbnail = f'https://{host}{metadata.get("poster")}' video_id = traverse_obj(metadata, ('videojsVimpOptions', 'Mediakey')) else: thumbnail = self._html_search_meta(('og:image', 'twitter:image'), webpage, fatal=False)