Merge pull request #1953 from syeopite/fix1673

Update regex expressions to handle unexpected '};'
This commit is contained in:
TheFrenchGhosty
2021-05-13 10:24:44 +02:00
committed by GitHub
2 changed files with 2 additions and 2 deletions

View File

@@ -818,7 +818,7 @@ end
def extract_polymer_config(body)
params = {} of String => JSON::Any
player_response = body.match(/(window\["ytInitialPlayerResponse"\]|var\sytInitialPlayerResponse)\s*=\s*(?<info>{.*?});/m)
player_response = body.match(/(window\["ytInitialPlayerResponse"\]|var\sytInitialPlayerResponse)\s*=\s*(?<info>{.*?});\s*var\s*meta/m)
.try { |r| JSON.parse(r["info"]).as_h }
if body.includes?("To continue with your YouTube experience, please fill out the form below.") ||