From fc920120b2af055d401fa8359d314893a9ce465d Mon Sep 17 00:00:00 2001 From: Richard Cordovano Date: Mon, 22 Mar 2021 13:46:18 -0400 Subject: [PATCH] Ingest progress snapshot fix for file ingest modules --- Core/src/org/sleuthkit/autopsy/ingest/IngestManager.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Core/src/org/sleuthkit/autopsy/ingest/IngestManager.java b/Core/src/org/sleuthkit/autopsy/ingest/IngestManager.java index 3576da6c71..f73960aeca 100644 --- a/Core/src/org/sleuthkit/autopsy/ingest/IngestManager.java +++ b/Core/src/org/sleuthkit/autopsy/ingest/IngestManager.java @@ -782,7 +782,7 @@ public class IngestManager implements IngestProgressSnapshotProvider { ingestThreadActivitySnapshots.put(task.getThreadId(), newSnap); /* - * Update the total run time for the PREVIOUS ingest module in teh + * Update the total run time for the PREVIOUS ingest module in the * pipeline, which has now finished its processing for the task. */ incrementModuleRunTime(prevSnap.getActivity(), newSnap.getStartTime().getTime() - prevSnap.getStartTime().getTime()); @@ -808,7 +808,7 @@ public class IngestManager implements IngestProgressSnapshotProvider { ingestThreadActivitySnapshots.put(task.getThreadId(), newSnap); /* - * Update the total run time for the PREVIOUS ingest module in teh + * Update the total run time for the PREVIOUS ingest module in the * pipeline, which has now finished its processing for the task. */ incrementModuleRunTime(prevSnap.getActivity(), newSnap.getStartTime().getTime() - prevSnap.getStartTime().getTime());