diff --git a/server/models/todo.js b/server/models/todo.js index ee3cbd6..279d992 100644 --- a/server/models/todo.js +++ b/server/models/todo.js @@ -255,7 +255,7 @@ TodoSchema.statics.calculateTreeTodo = async function (userId, idproj, calcalsoU if (!!idparent) { // Calculate also the upper Projects ! return new Promise((resolve, reject) => { - Todo.calculateTreeTodo(userId, idparent, true, masterproj, true); + Todo.calculateTreeTodo(userId, idparent, true, masterproj, false); resolve(ris) }); } else {