]> jfr.im git - yt-dlp.git/blobdiff - yt_dlp/extractor/wsj.py
[ie/youtube] Extract upload timestamp if available (#9856)
[yt-dlp.git] / yt_dlp / extractor / wsj.py
index 9eeed104f507dfd411686c71b532118f30e1f4b5..35fe3036272cd67f80523098f05fd7a6c512275d 100644 (file)
@@ -1,7 +1,7 @@
 from .common import InfoExtractor
 from ..utils import (
-    int_or_none,
     float_or_none,
+    int_or_none,
     unified_strdate,
 )
 
@@ -82,7 +82,6 @@ def _real_extract(self, url):
                 'height': int_or_none(v.get('height')),
                 'fps': float_or_none(v.get('fps')),
             })
-        self._sort_formats(formats)
 
         return {
             'id': video_id,