Skip to content

Commit

Permalink
[extractor/rumble] Fix format sorting
Browse files Browse the repository at this point in the history
Closes #6119
Authored by: pukkandan
  • Loading branch information
Grub4K committed Feb 2, 2023
1 parent 776995b commit acacb57
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion yt_dlp/extractor/rumble.py
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ def _real_extract(self, url):
'filesize': 'size',
'width': 'w',
'height': 'h',
}, default={})
}, expected_type=lambda x: int(x) or None)
})

subtitles = {
Expand Down

0 comments on commit acacb57

Please sign in to comment.