mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-07 20:30:41 -05:00
[googledrive] Fix height extraction (closes #13603)
This commit is contained in:
parent
a49804816c
commit
8b347a389e
1 changed files with 1 additions and 1 deletions
|
@ -92,7 +92,7 @@ def _real_extract(self, url):
|
|||
if resolution:
|
||||
f.update({
|
||||
'width': resolution[0],
|
||||
'height': resolution[0],
|
||||
'height': resolution[1],
|
||||
})
|
||||
formats.append(f)
|
||||
self._sort_formats(formats)
|
||||
|
|
Loading…
Reference in a new issue