Skip to content

Commit 4c77a2e

Browse files
[bilibili] Strip uploader name (#29202)
1 parent 4131703 commit 4c77a2e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

youtube_dl/extractor/bilibili.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,7 @@ def _real_extract(self, url):
233233
webpage)
234234
if uploader_mobj:
235235
info.update({
236-
'uploader': uploader_mobj.group('name'),
236+
'uploader': uploader_mobj.group('name').strip(),
237237
'uploader_id': uploader_mobj.group('id'),
238238
})
239239
if not info.get('uploader'):

0 commit comments

Comments
 (0)