[downloader/dash] Improve 'combine_url' (fixes #6341)
In some videos the base_url already ends with '/'.
This commit is contained in:
		
							parent
							
								
									b73b14f72c
								
							
						
					
					
						commit
						59db9f8018
					
				
					 1 changed files with 1 additions and 1 deletions
				
			
		| 
						 | 
				
			
			@ -37,7 +37,7 @@ class DashSegmentsFD(FileDownloader):
 | 
			
		|||
        def combine_url(base_url, target_url):
 | 
			
		||||
            if re.match(r'^https?://', target_url):
 | 
			
		||||
                return target_url
 | 
			
		||||
            return '%s/%s' % (base_url, target_url)
 | 
			
		||||
            return '%s%s%s' % (base_url, '' if base_url.endswith('/') else '/', target_url)
 | 
			
		||||
 | 
			
		||||
        with open(tmpfilename, 'wb') as outf:
 | 
			
		||||
            append_url_to_file(
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue