From fe88f1b83769389feb4950c29e7e543fbcf2dd39 Mon Sep 17 00:00:00 2001 From: KnugiHK <24708955+KnugiHK@users.noreply.github.com> Date: Sat, 14 Sep 2024 15:22:53 +0800 Subject: [PATCH] Make the iOS contact database optional #76 --- Whatsapp_Chat_Exporter/ios_media_handler.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Whatsapp_Chat_Exporter/ios_media_handler.py b/Whatsapp_Chat_Exporter/ios_media_handler.py index 253a204..c4360af 100644 --- a/Whatsapp_Chat_Exporter/ios_media_handler.py +++ b/Whatsapp_Chat_Exporter/ios_media_handler.py @@ -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