From c843e685884ccc1a5186693d6450a34232b4377d Mon Sep 17 00:00:00 2001 From: felix Date: Tue, 13 Jul 2021 09:18:20 +0200 Subject: [utils] Improve `js_to_json` comment regex Capture the newline character as part of a single-line comment From #497, Authored by: fstirlitz --- yt_dlp/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'yt_dlp/utils.py') diff --git a/yt_dlp/utils.py b/yt_dlp/utils.py index 8f9cb46f6..795c5632f 100644 --- a/yt_dlp/utils.py +++ b/yt_dlp/utils.py @@ -4365,7 +4365,7 @@ def strip_jsonp(code): def js_to_json(code, vars={}): # vars is a dict of var, val pairs to substitute - COMMENT_RE = r'/\*(?:(?!\*/).)*?\*/|//[^\n]*' + COMMENT_RE = r'/\*(?:(?!\*/).)*?\*/|//[^\n]*\n' SKIP_RE = r'\s*(?:{comment})?\s*'.format(comment=COMMENT_RE) INTEGER_TABLE = ( (r'(?s)^(0[xX][0-9a-fA-F]+){skip}:?$'.format(skip=SKIP_RE), 16), -- cgit v1.2.3