mirror of
				https://gitlab.com/ytdl-org/youtube-dl.git
				synced 2025-11-04 01:27:07 -05:00 
			
		
		
		
	[soundcloud:set] Defer download link resolve (Closes #6354)
This commit is contained in:
		@@ -282,9 +282,11 @@ class SoundcloudSetIE(SoundcloudIE):
 | 
			
		||||
            msgs = (compat_str(err['error_message']) for err in info['errors'])
 | 
			
		||||
            raise ExtractorError('unable to download video webpage: %s' % ','.join(msgs))
 | 
			
		||||
 | 
			
		||||
        entries = [self.url_result(track['permalink_url'], 'Soundcloud') for track in info['tracks']]
 | 
			
		||||
 | 
			
		||||
        return {
 | 
			
		||||
            '_type': 'playlist',
 | 
			
		||||
            'entries': [self._extract_info_dict(track, secret_token=token) for track in info['tracks']],
 | 
			
		||||
            'entries': entries,
 | 
			
		||||
            'id': '%s' % info['id'],
 | 
			
		||||
            'title': info['title'],
 | 
			
		||||
        }
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user