mirror of
				https://github.com/yt-dlp/yt-dlp.git
				synced 2025-10-31 14:45:14 +00:00 
			
		
		
		
	[youtube] Fix extraction of the feed 'paging' values (fixes #2925)
This commit is contained in:
		| @@ -1775,9 +1775,12 @@ class YoutubeFeedsInfoExtractor(YoutubeBaseInfoExtractor): | ||||
|             feed_entries.extend( | ||||
|                 self.url_result(video_id, 'Youtube', video_id=video_id) | ||||
|                 for video_id in ids) | ||||
|             if info['paging'] is None: | ||||
|             mobj = re.search( | ||||
|                 r'data-uix-load-more-href="/?[^"]+paging=(?P<paging>\d+)', | ||||
|                 feed_html) | ||||
|             if mobj is None: | ||||
|                 break | ||||
|             paging = info['paging'] | ||||
|             paging = mobj.group('paging') | ||||
|         return self.playlist_result(feed_entries, playlist_title=self._PLAYLIST_TITLE) | ||||
|  | ||||
| class YoutubeSubscriptionsIE(YoutubeFeedsInfoExtractor): | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 Jaime Marquínez Ferrándiz
					Jaime Marquínez Ferrándiz