mirror of
				https://github.com/yt-dlp/yt-dlp.git
				synced 2025-10-31 06:35:12 +00:00 
			
		
		
		
	[networking] Strip whitespace around header values (#8802)
Fixes https://github.com/yt-dlp/yt-dlp/issues/8729 Authored by: coletdjnz
This commit is contained in:
		| @@ -2370,6 +2370,11 @@ Line 1 | ||||
|         headers4 = HTTPHeaderDict({'ytdl-test': 'data;'}) | ||||
|         self.assertEqual(set(headers4.items()), {('Ytdl-Test', 'data;')}) | ||||
| 
 | ||||
|         # common mistake: strip whitespace from values | ||||
|         # https://github.com/yt-dlp/yt-dlp/issues/8729 | ||||
|         headers5 = HTTPHeaderDict({'ytdl-test': ' data; '}) | ||||
|         self.assertEqual(set(headers5.items()), {('Ytdl-Test', 'data;')}) | ||||
| 
 | ||||
|     def test_extract_basic_auth(self): | ||||
|         assert extract_basic_auth('http://:foo.bar') == ('http://:foo.bar', None) | ||||
|         assert extract_basic_auth('http://foo.bar') == ('http://foo.bar', None) | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 coletdjnz
					coletdjnz