Skip to content

Commit

Permalink
Make the iOS contact database optional #76
Browse files Browse the repository at this point in the history
  • Loading branch information
KnugiHK committed Sep 14, 2024
1 parent df67a54 commit fe88f1b
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions Whatsapp_Chat_Exporter/ios_media_handler.py
Original file line number Diff line number Diff line change
Expand Up @@ -96,8 +96,7 @@ def extract_media(base_dir, identifiers, decrypt_chunk_size):
else:
shutil.copyfile(wts_db, identifiers.MESSAGE)
if not os.path.isfile(contact_db):
print("Contact database not found.")
exit()
print("Contact database not found. Skipping...")
else:
shutil.copyfile(contact_db, identifiers.CONTACT)
_wts_id = identifiers.DOMAIN
Expand Down

0 comments on commit fe88f1b

Please sign in to comment.