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')