mirror of
https://github.com/overcuriousity/autopsy-flatpak.git
synced 2025-07-19 02:57:44 +00:00
changed to equalsIgnoreCase()
This commit is contained in:
parent
8cbe47bd3e
commit
ec12f00f4e
@ -364,7 +364,7 @@ public class PlasoIngestModule implements DataSourceIngestModule {
|
|||||||
}
|
}
|
||||||
for (AbstractFile resolvedFile : abstractFiles) {
|
for (AbstractFile resolvedFile : abstractFiles) {
|
||||||
// double check its an exact match
|
// double check its an exact match
|
||||||
if (filePath.toLowerCase().matches(resolvedFile.getParentPath().toLowerCase())) {
|
if (filePath.equalsIgnoreCase(resolvedFile.getParentPath())) {
|
||||||
// cache it for next time
|
// cache it for next time
|
||||||
previousFile = resolvedFile;
|
previousFile = resolvedFile;
|
||||||
return resolvedFile;
|
return resolvedFile;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user