mirror of
https://github.com/ytdl-org/youtube-dl.git
synced 2024-11-22 02:01:50 +00:00
Fix old metadata reference
This commit is contained in:
parent
817e2e5938
commit
75266ce4ed
1 changed files with 1 additions and 1 deletions
|
@ -192,7 +192,7 @@ class BNNVaraIE(NPOIE):
|
|||
})
|
||||
|
||||
product_id = traverse_obj(media, ('data', 'player', 'pomsProductId'))
|
||||
formats = self._download_by_product_id(product_id, video_id) if product_id else []
|
||||
formats = self._extract_formats_by_product_id(product_id, video_id) if product_id else []
|
||||
self._sort_formats(formats)
|
||||
|
||||
return {
|
||||
|
|
Loading…
Reference in a new issue