1
0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2024-09-05 02:19:36 +02:00

[jsinterp] Adapt to updated YouTube code generation (Fixes #7623, fixes #7624, fixes #7625, fixes #7626)

This commit is contained in:
Philipp Hagemeister 2015-11-24 07:45:02 +01:00
parent 032f2f260f
commit 4c7d816dd7

View File

@ -214,7 +214,7 @@ def extract_object(self, objname):
obj = {}
obj_m = re.search(
(r'(?:var\s+)?%s\s*=\s*\{' % re.escape(objname)) +
r'\s*(?P<fields>([a-zA-Z$0-9]+\s*:\s*function\(.*?\)\s*\{.*?\})*)' +
r'\s*(?P<fields>([a-zA-Z$0-9]+\s*:\s*function\(.*?\)\s*\{.*?\}(?:,\s*)?)*)' +
r'\}\s*;',
self.code)
fields = obj_m.group('fields')