From 4d1ae8c2a4776d19e9cc10b0e72c4081caa9387b Mon Sep 17 00:00:00 2001 From: Sergey Kolupaev Date: Thu, 5 Mar 2026 16:00:20 -0800 Subject: [PATCH] Support CommandLine approval configuration --- keepercommander/pedm/admin_plugin.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/keepercommander/pedm/admin_plugin.py b/keepercommander/pedm/admin_plugin.py index 682afb743..c9a617622 100644 --- a/keepercommander/pedm/admin_plugin.py +++ b/keepercommander/pedm/admin_plugin.py @@ -311,7 +311,7 @@ def get_collections() -> Iterable[admin_storage.PedmStorageCollection]: collections: List[admin_types.PedmCollection] = [] for collection_dto in get_collections(): try: - if collection_dto.collection_type in (1000, 1001, 1002): + if 1000 <= collection_dto.collection_type < 2000: collection_value = collection_dto.data.decode('utf-8') else: collection_value = crypto.decrypt_aes_v2(collection_dto.data, self.agent_key).decode('utf-8')