From 578a7ee0fc048ed73ab8adf89f5eef0786b54c6b Mon Sep 17 00:00:00 2001 From: yashsinghcodes Date: Wed, 22 Jan 2025 17:03:19 +0530 Subject: [PATCH] [FIX]: fixed the value return --- shuffle-tools/1.2.0/src/app.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/shuffle-tools/1.2.0/src/app.py b/shuffle-tools/1.2.0/src/app.py index 2f6cc351..913c327a 100644 --- a/shuffle-tools/1.2.0/src/app.py +++ b/shuffle-tools/1.2.0/src/app.py @@ -1998,7 +1998,7 @@ def check_cache_contains(self, key, value, append): try: # FIXME: This is a hack, but it works if directcall: - new_value = parsedvalue + new_value = allvalues["value"] if new_value == None: new_value = [value] @@ -2016,7 +2016,7 @@ def check_cache_contains(self, key, value, append): "reason": f"Appended as it didn't exist", "key": key, "search": value, - "value": parsedvalue, + "value": data["value"], } except Exception as e: exception = e