[youtube] Fix episode metadata extraction

This commit is contained in:
coletdjnz
2022-04-15 16:22:03 +12:00
parent 583910682f
commit affc4fefea

View File

@@ -3618,7 +3618,7 @@ class YoutubeIE(YoutubeBaseInfoExtractor):
lambda x: x['superTitleIcon']['iconType']) == 'LOCATION_PIN':
info['location'] = stl
else:
mobj = re.search(r'(.+?)\s*S(\d+)\s*•\s*E(\d+)', stl)
mobj = re.search(r'(.+?)\s*S(\d+)\s*•?\s*E(\d+)', stl)
if mobj:
info.update({
'series': mobj.group(1),