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