Skip to content

Commit

Permalink
fix: remove quotes from SINCE date
Browse files Browse the repository at this point in the history
fixes #661
  • Loading branch information
firstof9 committed May 11, 2022
1 parent a5862ac commit b5a89d7
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 @@ -482,7 +482,7 @@ def build_search(address: list, date: str, subject: str = None) -> tuple:
Return tuple of utf8 flag and search query.
"""
the_date = f'SINCE "{date}"'
the_date = f"SINCE {date}"
imap_search = None
utf8_flag = False
prefix_list = None
Expand Down

0 comments on commit b5a89d7

Please sign in to comment.