mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-02 13:45:10 -05:00
Merge pull request #35 from pitkley/fix/matching-logic
Fix matching if user supplied an empty value
This commit is contained in:
commit
9a437dc9f6
@ -86,6 +86,9 @@ class Tag(SluggedModel):
|
||||
self.name, self.match, self.get_matching_algorithm_display())
|
||||
|
||||
def matches(self, text):
|
||||
# Check that match is not empty
|
||||
if self.match.strip() == "":
|
||||
return False
|
||||
|
||||
if self.matching_algorithm == self.MATCH_ALL:
|
||||
for word in self.match.split(" "):
|
||||
|
Loading…
x
Reference in New Issue
Block a user