From 3d2ab9cc440ea98d39d77b1bdc16f186f533f31c Mon Sep 17 00:00:00 2001 From: HVbajoria Date: Mon, 6 Oct 2025 23:18:53 +0530 Subject: [PATCH] Fixed email capitalization check --- WaiverCheck.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/WaiverCheck.py b/WaiverCheck.py index 2d5c4b3..3646d08 100644 --- a/WaiverCheck.py +++ b/WaiverCheck.py @@ -106,7 +106,7 @@ def Run(self): if WA_ID: contact = self.WA_API.GetContactById(WA_ID) else: - contact = self.WA_API.GetContactByEmail(waiver.email)[0] + contact = self.WA_API.GetContactByEmail(waiver.email.lower())[0] WA_ID = contact['Id'] break #print(contact)