Deleting task_time_worked entries with the com.snc.time_worked.update_task_timer Property Enabled will not update Time Worked field.DescriptionDeleting task_time_worked entries with the com.snc.time_worked.update_task_timer Property Enabled will not update Time Worked field.Steps to Reproduce 1 Set com.snc.time_worked.update_task_timer to true2 Add Time worked field to task form (e.g. Problem)3 Add Time Worked related list to task form (e.g. Problem)4 Go to a task form (e.g. Problem) and save the record. Notice message saying time worked updated.5 Delete a time worked record from the related list Expected: Message shows time worked updatedActual: No message and time worked not reset to zeroWorkaroundModify script include: Update task timer sysId: 2ebd0e17c0a80a6d44cad01349d5d0f9 From: var msg = new TaskTimer().updateTaskTimer(current.task.getRefRecord()); To: var msg = new TaskTimer().updateTaskTimer(current.task.getRefRecord(), current.operation() == 'delete'); Related Problem: PRB1846782