1
0
mirror of https://github.com/yt-dlp/yt-dlp synced 2025-12-18 23:25:42 +07: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

View File

@@ -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)