refactor: Remove unecessary websocket calls for taskmaster

This commit is contained in:
simos
2025-11-14 16:31:33 +01:00
parent 71e400c54f
commit 2815e206dc
2 changed files with 3 additions and 34 deletions

View File

@@ -331,15 +331,6 @@ router.get('/detect/:projectName', async (req, res) => {
timestamp: new Date().toISOString()
};
// Broadcast TaskMaster project update via WebSocket
if (req.app.locals.wss) {
broadcastTaskMasterProjectUpdate(
req.app.locals.wss,
projectName,
taskMasterResult
);
}
res.json(responseData);
} catch (error) {