From f03a22e8e4a521f2762f9ae5ab5b951f897a7182 Mon Sep 17 00:00:00 2001 From: "Dr.Lt.Data" Date: Mon, 13 May 2024 11:56:25 +0900 Subject: [PATCH] fix: is_unsecure_features_disabled invalid negation https://github.com/ltdrdata/ComfyUI-Manager/issues/672 --- glob/manager_core.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/glob/manager_core.py b/glob/manager_core.py index 4994383..3304364 100644 --- a/glob/manager_core.py +++ b/glob/manager_core.py @@ -23,7 +23,7 @@ sys.path.append(glob_path) import cm_global from manager_util import * -version = [2, 32, 1] +version = [2, 32, 2] version_str = f"V{version[0]}.{version[1]}" + (f'.{version[2]}' if len(version) > 2 else '') comfyui_manager_path = os.path.abspath(os.path.join(os.path.dirname(__file__), '..')) @@ -1192,4 +1192,4 @@ def unzip(model_path): def is_unsecure_features_disabled(): - return not get_config()['disable_unsecure_features'] + return get_config()['disable_unsecure_features']