1
0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2024-07-03 10:39:12 +02:00

change to non-fatal

This commit is contained in:
c-basalt 2024-06-29 21:49:46 -04:00
parent ce17a1dd43
commit f866f5ff42

View File

@ -285,7 +285,7 @@ def _fetch_page(self, mid, page_size, page_num):
def _real_extract(self, url):
mid = self._match_id(url)
init_data = self.download_init_data(url, mid)
init_data = self.download_init_data(url, mid, fatal=False)
return self.playlist_result(
OnDemandPagedList(functools.partial(self._fetch_page, mid, self._PAGE_SIZE), self._PAGE_SIZE),