mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-02 01:32:59 +01:00
[dbtv] Make sure the 'id' field is a string
This commit is contained in:
parent
70f6796e7d
commit
c8f167823f
@ -4,6 +4,7 @@
|
||||
import re
|
||||
|
||||
from .common import InfoExtractor
|
||||
from ..compat import compat_str
|
||||
from ..utils import (
|
||||
float_or_none,
|
||||
int_or_none,
|
||||
@ -61,7 +62,7 @@ def _real_extract(self, url):
|
||||
self._sort_formats(formats)
|
||||
|
||||
return {
|
||||
'id': video['id'],
|
||||
'id': compat_str(video['id']),
|
||||
'display_id': display_id,
|
||||
'title': video['title'],
|
||||
'description': clean_html(video['desc']),
|
||||
|
Loading…
Reference in New Issue
Block a user