From 9bd0a461036f40381b04c7323431b4c88ad7ac49 Mon Sep 17 00:00:00 2001 From: Tim Wilson Date: Tue, 29 Sep 2020 13:28:41 -0600 Subject: [PATCH] bugfix error when searching by id list --- bot.py | 1 + 1 file changed, 1 insertion(+) diff --git a/bot.py b/bot.py index 63c3860..175a9e6 100644 --- a/bot.py +++ b/bot.py @@ -1772,6 +1772,7 @@ async def repeat_command(command, message, content="", msg_list=[]): def get_torrent_list_from_command_str(command_str=""): id_list = strListToList(command_str) + filter_by, sort_by, filter_regex, tracker_regex, num_results = None, None, None, None, None if not id_list: filter_by, sort_by, filter_regex, tracker_regex, num_results = torGetListOpsFromStr(command_str) if filter_by is not None and filter_by == -1: