mirror of
				https://github.com/yt-dlp/yt-dlp.git
				synced 2025-10-31 14:45:14 +00:00 
			
		
		
		
	[facebook] Fix typo and break when found video_data (Closes #10048)
This commit is contained in:
		| @@ -231,11 +231,13 @@ class FacebookIE(InfoExtractor): | ||||
|                     continue | ||||
|                 if isinstance(f, dict): | ||||
|                     f = [f] | ||||
|                 if isinstance(f, list): | ||||
|                 if not isinstance(f, list): | ||||
|                     continue | ||||
|                 if f[0].get('video_id') == video_id: | ||||
|                     video_data = video_data_candidate | ||||
|                     break | ||||
|             if video_data: | ||||
|                 break | ||||
|  | ||||
|         def video_data_list2dict(video_data): | ||||
|             ret = {} | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 Sergey M․
					Sergey M․