mirror of
				https://gitlab.com/ytdl-org/youtube-dl.git
				synced 2025-11-04 02:27:11 -05:00 
			
		
		
		
	[instagram:user] Fix extraction (fixes #9059)
The URL for the next page was incorrect and we always got the same page, therefore it got trapped in an infinite loop.
This commit is contained in:
		@@ -152,7 +152,7 @@ class InstagramUserIE(InfoExtractor):
 | 
			
		||||
 | 
			
		||||
            if not page['items']:
 | 
			
		||||
                break
 | 
			
		||||
            max_id = page['items'][-1]['id']
 | 
			
		||||
            max_id = page['items'][-1]['id'].split('_')[0]
 | 
			
		||||
            media_url = (
 | 
			
		||||
                'http://instagram.com/%s/media?max_id=%s' % (
 | 
			
		||||
                    uploader_id, max_id))
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user