Browse Source

Merge pull request #2671 from searx/update-soundcloud

[mod] soundcloud: faster initialization
Alexandre Flament 4 years ago
parent
commit
a48ec0b4bd
1 changed files with 1 additions and 1 deletions
  1. 1 1
      searx/engines/soundcloud.py

+ 1 - 1
searx/engines/soundcloud.py

@@ -55,7 +55,7 @@ def get_client_id():
         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]
 
 
         # extracts valid app_js urls from soundcloud.com content
         # extracts valid app_js urls from soundcloud.com content
-        for app_js_url in app_js_urls:
+        for app_js_url in app_js_urls[::-1]:
             # gets app_js and searches for the clientid
             # gets app_js and searches for the clientid
             response = http_get(app_js_url)
             response = http_get(app_js_url)
             if response.ok:
             if response.ok: