mirror of
https://github.com/iv-org/invidious.git
synced 2024-11-24 22:47:19 +00:00
fix linting + use .empty?
This commit is contained in:
parent
9f846127ae
commit
b51770dbdb
@ -257,7 +257,7 @@ class Config
|
||||
puts "Config: You can not run inv_sig_helper and invidious_companion at the same time."
|
||||
exit(1)
|
||||
end
|
||||
if !CONFIG.invidious_companion_key
|
||||
if CONFIG.invidious_companion_key.empty?
|
||||
puts "Config: Please configure a key if you are using invidious companion."
|
||||
exit(1)
|
||||
elsif CONFIG.invidious_companion_key == "CHANGE_ME!!"
|
||||
|
@ -120,9 +120,9 @@ def extract_video_info(video_id : String)
|
||||
new_player_response["storyboards"] = player_response["storyboards"] if player_response["storyboards"]?
|
||||
new_player_response["captions"] = player_response["captions"] if player_response["captions"]?
|
||||
|
||||
player_response = new_player_response
|
||||
params.delete("reason")
|
||||
end
|
||||
player_response = new_player_response
|
||||
params.delete("reason")
|
||||
end
|
||||
end
|
||||
|
||||
{"captions", "playabilityStatus", "playerConfig", "storyboards", "invidiousCompanion"}.each do |f|
|
||||
|
Loading…
Reference in New Issue
Block a user