Skip to content

Commit

Permalink
fix: remove quotes from SINCE date (#663)
Browse files Browse the repository at this point in the history
  • Loading branch information
firstof9 authored May 11, 2022
2 parents 57d2a15 + b5a89d7 commit 1867b73
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 1867b73

Please sign in to comment.