mirror of
https://github.com/ytdl-org/youtube-dl.git
synced 2024-01-07 17:16:08 +00:00
[pluralsight] Fix new player (Closes #8215)
This commit is contained in:
parent
b83b782dc4
commit
bc0550c262
|
@ -232,7 +232,7 @@ class PluralsightIE(PluralsightBaseIE):
|
||||||
# { a = author, cn = clip_id, lc = end, m = name }
|
# { a = author, cn = clip_id, lc = end, m = name }
|
||||||
|
|
||||||
return {
|
return {
|
||||||
'id': clip['clipName'],
|
'id': clip.get('clipName') or clip['name'],
|
||||||
'title': '%s - %s' % (module['title'], clip['title']),
|
'title': '%s - %s' % (module['title'], clip['title']),
|
||||||
'duration': int_or_none(clip.get('duration')) or parse_duration(clip.get('formattedDuration')),
|
'duration': int_or_none(clip.get('duration')) or parse_duration(clip.get('formattedDuration')),
|
||||||
'creator': author,
|
'creator': author,
|
||||||
|
|
Loading…
Reference in a new issue