fix: Properly saving tasks

Tasks were not properly saved by the JsonTaskList, resulting in the newly created tasks being discarded immediately. Fixed by putting them into the taskMap in saveTask()
This commit is contained in:
David Guler
2022-11-21 09:15:29 +01:00
parent bfe3fcfb79
commit ffc7f5174e
3 changed files with 40 additions and 41 deletions
@@ -106,6 +106,7 @@ public class JsonTaskList implements TaskList {
if(task.getId() == 0) {
task.withId(idProvider.incrementAndGet());
}
taskMap.put(task.getId(), task);
writeTaskListToFile();
}