1
0
Fork 0
mirror of https://github.com/ytdl-org/youtube-dl.git synced 2024-05-18 11:09:32 +00:00

[googledrive] Fix height extraction (closes #13603)

This commit is contained in:
Sergey M․ 2017-07-09 00:26:13 +07:00
parent a49804816c
commit 8b347a389e
No known key found for this signature in database
GPG key ID: 2C393E0F18A9236D

View file

@ -92,7 +92,7 @@ class GoogleDriveIE(InfoExtractor):
if resolution:
f.update({
'width': resolution[0],
'height': resolution[0],
'height': resolution[1],
})
formats.append(f)
self._sort_formats(formats)