Fixes inversion in tagged mail searching

This commit is contained in:
Trenton H 2023-05-03 14:17:52 -07:00
parent df203311fe
commit 29d8c4e08d

View File

@ -168,7 +168,7 @@ class TagMailAction(BaseMailAction):
if self.supports_gmail_labels:
return AND(NOT(gmail_label=self.keyword), no_keyword=self.keyword)
else:
return NOT(no_keyword=self.keyword)
return {"no_keyword": self.keyword}
else: # pragma: nocover
raise ValueError("This should never happen.")