mirror of
https://github.com/mvt-project/mvt.git
synced 2026-02-12 16:42:45 +00:00
Fix crash Handling empty adb key list (#558)
This commit is contained in:
committed by
GitHub
parent
3afe218c7c
commit
863de4f543
@@ -120,7 +120,7 @@ class DumpsysADBArtifact(AndroidArtifact):
|
||||
|
||||
# Calculate key fingerprints for better readability
|
||||
key_info = []
|
||||
for user_key in parsed.get("user_keys"):
|
||||
for user_key in parsed.get("user_keys", []):
|
||||
user_info = self.calculate_key_info(user_key)
|
||||
key_info.append(user_info)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user