From 860213c42794c32f9db63802959533a2f7c4364e Mon Sep 17 00:00:00 2001 From: simon Date: Thu, 23 Mar 2023 09:57:16 +0700 Subject: [PATCH] fix empty reply --- tubearchivist/home/src/ta/ta_redis.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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]