From 0492082b66fa8643e6ea56842fc651e82a596add Mon Sep 17 00:00:00 2001 From: Shariq Ansari Date: Mon, 8 Apr 2024 18:20:36 +0530 Subject: [PATCH] fix: receiver was not getting captured --- crm/integrations/twilio/twilio_handler.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crm/integrations/twilio/twilio_handler.py b/crm/integrations/twilio/twilio_handler.py index 4f03a4ab..1ece9296 100644 --- a/crm/integrations/twilio/twilio_handler.py +++ b/crm/integrations/twilio/twilio_handler.py @@ -262,6 +262,6 @@ class TwilioCallDetails: 'id': self.call_sid, 'from': from_number, 'to': to_number, - 'reciever': receiver, + 'receiver': receiver, 'caller': caller, } \ No newline at end of file