Skip to content

Commit

Permalink
Update manifest_analysis.py
Browse files Browse the repository at this point in the history
Code QA
  • Loading branch information
ajinabraham authored Jan 9, 2024
1 parent 868b6ac commit 77d8e20
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions mobsf/StaticAnalyzer/views/android/manifest_analysis.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,11 +66,8 @@ def assetlinks_check(act_name, well_knowns):
for w_url, host in well_knowns.items():
logger.info(
'App Link Assetlinks Check - [%s] %s', act_name, host)
futures.append(
executor.submit(_check_url, host, w_url))

for future in futures:
findings.append(future.result())
findings.append(
executor.submit(_check_url, host, w_url).result())

return findings

Expand Down

0 comments on commit 77d8e20

Please sign in to comment.