From ec12f00f4e496b9402dfa2c79e531ff23b6cd22f Mon Sep 17 00:00:00 2001 From: Brian Carrier Date: Wed, 19 Sep 2018 08:43:18 -0400 Subject: [PATCH] changed to equalsIgnoreCase() --- .../org/sleuthkit/autopsy/modules/plaso/PlasoIngestModule.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Core/src/org/sleuthkit/autopsy/modules/plaso/PlasoIngestModule.java b/Core/src/org/sleuthkit/autopsy/modules/plaso/PlasoIngestModule.java index b5dbf5f94c..3a03793a3d 100644 --- a/Core/src/org/sleuthkit/autopsy/modules/plaso/PlasoIngestModule.java +++ b/Core/src/org/sleuthkit/autopsy/modules/plaso/PlasoIngestModule.java @@ -364,7 +364,7 @@ public class PlasoIngestModule implements DataSourceIngestModule { } for (AbstractFile resolvedFile : abstractFiles) { // double check its an exact match - if (filePath.toLowerCase().matches(resolvedFile.getParentPath().toLowerCase())) { + if (filePath.equalsIgnoreCase(resolvedFile.getParentPath())) { // cache it for next time previousFile = resolvedFile; return resolvedFile;