mirror of
				https://github.com/iv-org/invidious.git
				synced 2025-10-31 20:51:56 +00:00 
			
		
		
		
	Apply style change suggestions
Co-authored-by: Samantaz Fox <coding@samantaz.fr>
This commit is contained in:
		| @@ -249,7 +249,12 @@ struct Video | ||||
|  | ||||
|   def music : Array(VideoMusic) | ||||
|     info["music"].as_a.map { |music_json| | ||||
|       VideoMusic.new(music_json["song"].as_s, music_json["album"].as_s, music_json["artist"].as_s, music_json["license"].as_s) | ||||
|       VideoMusic.new( | ||||
|         music_json["song"].as_s, | ||||
|         music_json["album"].as_s, | ||||
|         music_json["artist"].as_s, | ||||
|         music_json["license"].as_s | ||||
|       ) | ||||
|     } | ||||
|   end | ||||
|  | ||||
|   | ||||
| @@ -325,12 +325,10 @@ def parse_video_info(video_id : String, player_response : Hash(String, JSON::Any | ||||
|     album = nil | ||||
|     music_license = nil | ||||
|  | ||||
|     # used when multiple songs | ||||
|     song = music_desc.dig?("carouselLockupRenderer", "videoLockup", "compactVideoRenderer", "title", "simpleText") | ||||
|  | ||||
|     # used when multiple songs and the song has a link | ||||
|     if !song | ||||
|       song = music_desc.dig("carouselLockupRenderer", "videoLockup", "compactVideoRenderer", "title", "runs", 0, "text") | ||||
|     # Used when the video has multiple songs | ||||
|     if song_title = music_desc.dig?("carouselLockupRenderer", "videoLockup", "compactVideoRenderer", "title") | ||||
|       # "simpleText" for plain text / "runs" when song has a link | ||||
|       song = song_title["simpleText"]? || song_title.dig("runs", 0, "text") | ||||
|     end | ||||
|  | ||||
|     music_desc.dig?("carouselLockupRenderer", "infoRows").try &.as_a.each do |desc| | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 ChunkyProgrammer
					ChunkyProgrammer