mirror of
				https://github.com/iv-org/invidious.git
				synced 2025-10-31 04:32:02 +00:00 
			
		
		
		
	Use named params for SearchChannel
This commit is contained in:
		| @@ -264,13 +264,13 @@ def extract_items(nodeset, ucid = nil) | ||||
|       video_count ||= 0 | ||||
|  | ||||
|       items << SearchChannel.new( | ||||
|         author, | ||||
|         ucid, | ||||
|         author_thumbnail, | ||||
|         subscriber_count, | ||||
|         video_count, | ||||
|         description, | ||||
|         description_html | ||||
|         author: author, | ||||
|         ucid: ucid, | ||||
|         author_thumbnail: author_thumbnail, | ||||
|         subscriber_count: subscriber_count, | ||||
|         video_count: video_count, | ||||
|         description: description, | ||||
|         description_html: description_html | ||||
|       ) | ||||
|     else | ||||
|       id = id.lchop("/watch?v=") | ||||
| @@ -324,18 +324,18 @@ def extract_items(nodeset, ucid = nil) | ||||
|       end | ||||
|  | ||||
|       items << SearchVideo.new( | ||||
|         title, | ||||
|         id, | ||||
|         author, | ||||
|         author_id, | ||||
|         published, | ||||
|         view_count, | ||||
|         description, | ||||
|         description_html, | ||||
|         length_seconds, | ||||
|         live_now, | ||||
|         paid, | ||||
|         premium | ||||
|         title: title, | ||||
|         id: id, | ||||
|         author: author, | ||||
|         ucid: author_id, | ||||
|         published: published, | ||||
|         views: view_count, | ||||
|         description: description, | ||||
|         description_html: description_html, | ||||
|         length_seconds: length_seconds, | ||||
|         live_now: live_now, | ||||
|         paid: paid, | ||||
|         premium: premium | ||||
|       ) | ||||
|     end | ||||
|   end | ||||
|   | ||||
| @@ -201,16 +201,16 @@ def fetch_playlist(plid) | ||||
|   updated = decode_date(updated) | ||||
|  | ||||
|   playlist = Playlist.new( | ||||
|     title, | ||||
|     plid, | ||||
|     author, | ||||
|     author_thumbnail, | ||||
|     ucid, | ||||
|     description, | ||||
|     description_html, | ||||
|     video_count, | ||||
|     views, | ||||
|     updated | ||||
|     title: title, | ||||
|     id: plid, | ||||
|     author: author, | ||||
|     author_thumbnail: author_thumbnail, | ||||
|     ucid: ucid, | ||||
|     description: description, | ||||
|     description_html: description_html, | ||||
|     video_count: video_count, | ||||
|     views: views, | ||||
|     updated: updated | ||||
|   ) | ||||
|  | ||||
|   return playlist | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 Omar Roth
					Omar Roth