agentgui 1.0.497 → 1.0.498
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/server.js +1 -0
package/package.json
CHANGED
package/server.js
CHANGED
|
@@ -1917,6 +1917,7 @@ const server = http.createServer(async (req, res) => {
|
|
|
1917
1917
|
if (result.success) {
|
|
1918
1918
|
queries.updateToolStatus(toolId, { status: 'installed', installed_at: Date.now() });
|
|
1919
1919
|
queries.addToolInstallHistory(toolId, 'update', 'success', null);
|
|
1920
|
+
await toolManager.checkToolStatusAsync(toolId);
|
|
1920
1921
|
if (wsOptimizer && wsOptimizer.broadcast) {
|
|
1921
1922
|
wsOptimizer.broadcast({ type: 'tool_update_complete', toolId, data: result });
|
|
1922
1923
|
}
|