]> jfr.im git - yt-dlp.git/blobdiff - yt_dlp/extractor/steam.py
[extractor/youtube] Fix continuation loop with no comments (#7148)
[yt-dlp.git] / yt_dlp / extractor / steam.py
index eea20ff855a4c8e14af5b56e1e808ebd417044cc..7daee2fe03c7068daef087b8aef960a6011ff988 100644 (file)
@@ -109,7 +109,6 @@ def _real_extract(self, url):
                                 'format_id': ext + quality,
                                 'url': video_url,
                             })
-            self._sort_formats(formats)
             entry['formats'] = formats
             entries.append(entry)
         embedded_videos = re.findall(r'(<iframe[^>]+>)', webpage)
@@ -163,7 +162,6 @@ def _real_extract(self, url):
             'https://steamcommunity.com/actions/ajaxresolveusers',
             video_id, query={'steamids': video_id})[0]
 
-        self._sort_formats(formats)
         return {
             'id': video_id,
             'title': self._generic_title('', webpage),