修复节点已存在时无法覆盖安装的问题

This commit is contained in:
jingrow 2025-11-03 03:41:06 +08:00
parent a964723dd2
commit df7898538b

View File

@ -565,8 +565,11 @@ def _install_single_node_directory(node_dir: str) -> Dict[str, Any]:
} }
if exists_res.get("success"): if exists_res.get("success"):
# 更新现有记录,使用 node_type 作为 name # 更新现有记录,使用 get_record_id 返回的 name根据 node_type 查找得到的)
res = update_record("Local Ai Node", node_type, payload) record_name = exists_res.get('name')
if not record_name:
return {'success': False, 'error': '获取记录名称失败'}
res = update_record("Local Ai Node", record_name, payload)
else: else:
# 创建新记录 # 创建新记录
res = create_record("Local Ai Node", payload) res = create_record("Local Ai Node", payload)