Skip to content

Commit

Permalink
Strip quotes from Amazon forward emails (#406)
Browse files Browse the repository at this point in the history
  • Loading branch information
firstof9 authored Mar 16, 2021
2 parents 82c6c47 + 3d45e28 commit 111e36e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion custom_components/mail_and_packages/helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -904,7 +904,7 @@ def get_items(

for domain in domains:
if "@" in domain:
email_address = domain
email_address = domain.strip('"')
_LOGGER.debug("Amazon email search address: %s", str(email_address))
else:
email_address = []
Expand Down

0 comments on commit 111e36e

Please sign in to comment.