Skip to content

Commit

Permalink
Merge pull request #6203 from effective-webwork/fix-progress
Browse files Browse the repository at this point in the history
Update process when assigning task
  • Loading branch information
solth authored Sep 17, 2024
2 parents ec7fc5e + 984fd50 commit c442dcf
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ public String takeOverTask() {
return tasksPath;
} else {
this.workflowControllerService.assignTaskToUser(this.currentTask);
ServiceManager.getTaskService().save(this.currentTask);
ServiceManager.getTaskService().save(this.currentTask, true);
}
} catch (DataException | IOException | DAOException e) {
Helper.setErrorMessage(ERROR_SAVING, new Object[] {ObjectType.TASK.getTranslationSingular() }, logger,
Expand Down

0 comments on commit c442dcf

Please sign in to comment.