mirror of
https://github.com/ytdl-org/youtube-dl.git
synced 2024-11-08 19:08:40 +00:00
[1tv] Fix video id extraction
This commit is contained in:
parent
3ed81714d8
commit
4afa4ff223
|
@ -107,7 +107,7 @@ class FirstTVIE(InfoExtractor):
|
|||
'ya:ovs:upload_date', webpage, 'upload date', default=None))
|
||||
|
||||
entries.append({
|
||||
'id': item.get('id') or uid,
|
||||
'id': compat_str(item.get('id') or item['uid']),
|
||||
'thumbnail': thumbnail,
|
||||
'title': title,
|
||||
'upload_date': upload_date,
|
||||
|
|
Loading…
Reference in a new issue