correction on mail_reader.py

This commit is contained in:
2024-03-20 18:05:22 +01:00
parent 3b39c0ed07
commit fe17d9c8f5
+1 -1
View File
@@ -209,7 +209,7 @@ def need_to_check_email(mail: str, successful_items) -> bool:
return True
# return True
# get all the item with the current mail
filtered_items = list(filter(lambda item: item.email == mail, successful_items))
filtered_items = list(filter(lambda item: item.mail == mail, successful_items))
# has validated value
if len(filtered_items) > 0:
validated_items = list(filter(