Update regexFilter.py

Wenn ein Filter nicht Matched (Regex) kommt False
Wenn es gar keinen Filter gibt, kommt ein falsches True. Muss auch False sein.
This commit is contained in:
Rumbel84 2017-05-23 20:46:01 +02:00 committed by GitHub
parent 1a9e2a34d1
commit 3b9da8eb0e

View file

@ -89,7 +89,7 @@ def checkFilters(typ, data, plugin, freq):
return False
else:
logging.debug("no Filter found")
return True
return False
except:
logging.error("Error in filter checking")