diff --git a/yt_dlp/extractor/plvideo.py b/yt_dlp/extractor/plvideo.py index 22ec05cf63..9ed8e3635c 100644 --- a/yt_dlp/extractor/plvideo.py +++ b/yt_dlp/extractor/plvideo.py @@ -48,7 +48,7 @@ def _real_extract(self, url): 'title': item.get('title'), 'formats': formats, 'thumbnails': [{'url': thumbnail}], - 'uploader': f'{item.get('channel').get('name')}', + 'uploader': item.get('channel').get('name'), 'duration': item.get('uploadFile').get('videoDuration'), 'uploader_id': item.get('channel').get('id'), 'view_count': item.get('stats').get('viewTotalCount'),