diff --git a/tubearchivist/home/src/ta/ta_redis.py b/tubearchivist/home/src/ta/ta_redis.py index 829c9ba8..7081fdc5 100644 --- a/tubearchivist/home/src/ta/ta_redis.py +++ b/tubearchivist/home/src/ta/ta_redis.py @@ -71,7 +71,7 @@ class RedisArchivist(RedisBase): """list all matches""" all_matches = self.list_keys(query) if not all_matches: - return False + return [] return [self.get_message(i) for i in all_matches]