From 36c8ca6ca6d6e99aa5a97d7f985e87d1df2432f6 Mon Sep 17 00:00:00 2001 From: eli fessler Date: Sat, 22 Oct 2022 18:58:53 -1000 Subject: [PATCH] fix call to custom_key_exists() --- s3s.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/s3s.py b/s3s.py index c512fed..2e761f9 100755 --- a/s3s.py +++ b/s3s.py @@ -1001,7 +1001,7 @@ def monitor_battles(which, secs, isblackout, istestrun): cookies=dict(_gtoken=GTOKEN)) result = json.loads(result_post.text) - if False and utils.custom_key_exists("ignore_private"): # TODO - how to check for SR private battles? + if False and utils.custom_key_exists("ignore_private", CONFIG_DATA): # TODO - how to check for SR private battles? pass else: outcome = "Clear" if result["data"]["coopHistoryDetail"]["resultWave"] == 0 else "Defeat"