mirror of
				https://github.com/iv-org/invidious.git
				synced 2025-10-31 12:42:09 +00:00 
			
		
		
		
	Handle playlists cataloged as Podcast (#4695)
Videos of a playlist cataloged as podcast are called "episodes" therefore Invidious was not able to find video in the text value inside the stats array. Test case: "/playlist?list=PLDu-Eh5lUs1a4irCbnxMIB6FrUMaTXgVF" Fixes issue 4688
This commit is contained in:
		| @@ -366,6 +366,8 @@ def fetch_playlist(plid : String) | ||||
|  | ||||
|     if text.includes? "video" | ||||
|       video_count = text.gsub(/\D/, "").to_i? || 0 | ||||
|     elsif text.includes? "episode" | ||||
|       video_count = text.gsub(/\D/, "").to_i? || 0 | ||||
|     elsif text.includes? "view" | ||||
|       views = text.gsub(/\D/, "").to_i64? || 0_i64 | ||||
|     else | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 Samantaz Fox
					Samantaz Fox