Fix AttributeError: module 'slixfeed.sqlite' has no attribute 'get_filters_value'
This commit is contained in:
parent
bb44cd925c
commit
9685b34536
2 changed files with 3 additions and 3 deletions
|
@ -468,7 +468,7 @@ async def is_include_keyword(db_file, key, string):
|
|||
"""
|
||||
# async def reject(db_file, string):
|
||||
# async def is_blacklisted(db_file, string):
|
||||
keywords = sqlite.get_filters_value(db_file, key) or ''
|
||||
keywords = sqlite.get_filter_value(db_file, key) or ''
|
||||
keywords = keywords.split(",")
|
||||
keywords = keywords + (open_config_file("lists.toml")[key])
|
||||
for keyword in keywords:
|
||||
|
|
|
@ -1,2 +1,2 @@
|
|||
__version__ = '0.1.9'
|
||||
__version_info__ = (0, 1, 9)
|
||||
__version__ = '0.1.10'
|
||||
__version_info__ = (0, 1, 10)
|
||||
|
|
Loading…
Reference in a new issue