1
0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2025-11-10 11:35:14 +00:00

[cleanup] Misc (#12694)

Authored by: seproDev
This commit is contained in:
sepro
2025-03-25 01:05:02 +01:00
committed by GitHub
parent 66e0bab814
commit 9dde546e7e
10 changed files with 34 additions and 34 deletions

View File

@@ -2199,7 +2199,7 @@ class YoutubeIE(YoutubeBaseInfoExtractor):
def _extract_n_function_code(self, video_id, player_url):
player_id = self._extract_player_info(player_url)
func_code = self.cache.load('youtube-nsig', player_id, min_ver='2025.03.24')
func_code = self.cache.load('youtube-nsig', player_id, min_ver='2025.03.25')
jscode = func_code or self._load_player(video_id, player_url)
jsi = JSInterpreter(jscode)