From d1588ca1f56f3a167feb4fe1f0f21f2703c01b1a Mon Sep 17 00:00:00 2001 From: Shariq Ansari Date: Sat, 11 Jan 2025 12:46:23 +0530 Subject: [PATCH] fix: corrected twilio-integration to twilio_integration --- crm/api/whatsapp.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crm/api/whatsapp.py b/crm/api/whatsapp.py index 163a75e4..2a6c698c 100644 --- a/crm/api/whatsapp.py +++ b/crm/api/whatsapp.py @@ -108,7 +108,7 @@ def is_whatsapp_installed(): def get_whatsapp_messages(reference_doctype, reference_name): # twilio integration app is not compatible with crm app # crm has its own twilio integration in built - if "twilio-integration" in frappe.get_installed_apps(): + if "twilio_integration" in frappe.get_installed_apps(): return [] if not frappe.db.exists("DocType", "WhatsApp Message"): return []