Browse Source

[1tv] Fix video id extraction

totalwebcasting
Sergey M․ 8 years ago
parent
commit
4afa4ff223
No known key found for this signature in database GPG Key ID: 2C393E0F18A9236D
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      youtube_dl/extractor/firsttv.py

+ 1
- 1
youtube_dl/extractor/firsttv.py View File

@ -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…
Cancel
Save