From d61ea9bed700e9e402cbd2ad3f52c5156cacacfd Mon Sep 17 00:00:00 2001 From: voidptr_t Date: Mon, 5 Aug 2024 21:11:08 +0300 Subject: [PATCH] fix --- yt_dlp/extractor/plvideo.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 @@ class PlVideoVideoIE(InfoExtractor): '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'),