Fix matching if user supplied an empty value

This commit is contained in:
Pit Kleyersburg 2016-02-14 19:47:05 +01:00
parent aea4af5d3b
commit 7b227ffa2f

View File

@ -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(" "):