(work-log) Fix bug where items weren't added to the current batch on logItem

This commit is contained in:
Viktor Lofgren 2023-09-14 10:11:04 +02:00
parent 4799dd769e
commit 87a8593291

View File

@ -75,6 +75,7 @@ public class BatchingWorkLogImpl implements BatchingWorkLog {
@Override
public void logItem(String id) throws IOException {
writeLogEntry(new AddItem(id));
addItemToCurrentBatch(id);
}
@Override