|
@@ -51,7 +51,9 @@ def get_client_id():
|
|
|
|
|
|
if response.ok:
|
|
if response.ok:
|
|
tree = html.fromstring(response.content)
|
|
tree = html.fromstring(response.content)
|
|
- script_tags = tree.xpath("//script[contains(@src, '/assets/app')]")
|
|
+
|
|
|
|
+
|
|
|
|
+ script_tags = tree.xpath("//script[contains(@src, '/assets/')]")
|
|
app_js_urls = [script_tag.get('src') for script_tag in script_tags if script_tag is not None]
|
|
app_js_urls = [script_tag.get('src') for script_tag in script_tags if script_tag is not None]
|
|
|
|
|
|
|
|
|