mirror of
				https://github.com/yt-dlp/yt-dlp.git
				synced 2025-10-30 22:25:19 +00:00 
			
		
		
		
	[kuwo] Regular expression improvements
1. Prevent .+ and .* 2. Use [^>]+ instead of spaces for HTML tags 3. Remove unnecessary trailing parts
This commit is contained in:
		| @@ -229,7 +229,7 @@ class NetEaseMusicSingerIE(NetEaseMusicBaseIE): | ||||
|         if info['artist']['trans']: | ||||
|             name = '%s - %s' % (name, info['artist']['trans']) | ||||
|         if info['artist']['alias']: | ||||
|             name = '%s - %s' % (name, ";".join(info['artist']['alias'])) | ||||
|             name = '%s - %s' % (name, ';'.join(info['artist']['alias'])) | ||||
|  | ||||
|         entries = [ | ||||
|             self.url_result('http://music.163.com/#/song?id=%s' % song['id'], | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 Yen Chi Hsuan
					Yen Chi Hsuan