diff --git a/app/bot/helper/plexhelper.py b/app/bot/helper/plexhelper.py index 970e263..54596f8 100644 --- a/app/bot/helper/plexhelper.py +++ b/app/bot/helper/plexhelper.py @@ -66,7 +66,7 @@ def plexremoveinvite(plex, plexname): ''' def verifyemail(addressToVerify): regex = '^[_a-z0-9-]+(\.[_a-z0-9-]+)*@[a-z0-9-]+(\.[a-z0-9-]+)*(\.[a-z]{2,})$' - match = re.match(regex, addressToVerify) + match = re.match(regex, addressToVerify.lower()) if match == None: return False else: