[ie/youtube] Invalidate nsig cache from < 2024.07.09 (#10401)

Versions after 297b0a3792 and before 7ead7332af may have cached incorrect nsig function data

Authored by: bashonly
This commit is contained in:
bashonly 2024-07-09 14:04:46 -05:00 committed by GitHub
parent bbf84bf55e
commit 04e17ba20a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -3142,7 +3142,7 @@ def _extract_n_function_name(self, jscode):
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='2022.09.1')
func_code = self.cache.load('youtube-nsig', player_id, min_ver='2024.07.09')
jscode = func_code or self._load_player(video_id, player_url)
jsi = JSInterpreter(jscode)