diff --git a/VERSION b/VERSION index ab5cf037..18e87387 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.20.0-develop2 +1.20.0-develop3 diff --git a/modules/mdblist.py b/modules/mdblist.py index 12704639..e4adb18e 100644 --- a/modules/mdblist.py +++ b/modules/mdblist.py @@ -106,7 +106,7 @@ class Mdblist: response = self.config.get_json(url, params=final_params) except JSONDecodeError: raise Failed("Mdblist Error: JSON Decoding Failed") - if "response" in response and response["response"] is False or response["response"] == "False": + if "response" in response and (response["response"] is False or response["response"] == "False"): if response["error"] in ["API Limit Reached!", "API Rate Limit Reached!"]: self.limit = True raise LimitReached(f"MdbList Error: {response['error']}")