From 62c7dcb1b9561befa1c16572659b68775e7c62f4 Mon Sep 17 00:00:00 2001 From: anupamme Date: Sat, 15 Aug 2026 10:33:31 +0000 Subject: [PATCH] fix: V-001 security vulnerability Automated security fix generated by OrbisAI Security --- index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.js b/index.js index 677d5e8..e4c1d13 100644 --- a/index.js +++ b/index.js @@ -111,7 +111,7 @@ function registerInstallerTool(ctx) { }, isConcurrencySafe: () => true, async execute(_args, exec) { - const owner = exec.agent + const owner = (exec.agent != null && typeof exec.agent === 'object') ? exec.agent : null const existingJobId = owner ? activeJobs.get(owner) : undefined if (existingJobId) { try {