mirror of
				https://github.com/iv-org/invidious.git
				synced 2025-10-31 20:51:56 +00:00 
			
		
		
		
	Formatting
This commit is contained in:
		| @@ -652,13 +652,13 @@ module HelperExtractors | ||||
|   # | ||||
|   # Returns a 0 when it's unable to do so | ||||
|   def self.get_video_count(container : JSON::Any) : Int32 | ||||
|   	puts container | ||||
|     puts container | ||||
|     if box = container["videoCountText"]? | ||||
|     	if (extracted_text = extract_text(box)) && !extracted_text.includes? " subscriber" | ||||
|       		return extracted_text.gsub(/\D/, "").to_i | ||||
|      	else | ||||
|      		return 0 | ||||
|      	end | ||||
|       if (extracted_text = extract_text(box)) && !extracted_text.includes? " subscriber" | ||||
|         return extracted_text.gsub(/\D/, "").to_i | ||||
|       else | ||||
|         return 0 | ||||
|       end | ||||
|     elsif box = container["videoCount"]? | ||||
|       return box.as_s.to_i | ||||
|     else | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 DUOLabs333
					DUOLabs333