mirror of
https://github.com/overcuriousity/autopsy-flatpak.git
synced 2025-07-15 01:07:42 +00:00
Changed path check per Brian's request
This commit is contained in:
parent
fc0f277dce
commit
eb2c68616f
@ -391,7 +391,7 @@ public final class AppSQLiteDB {
|
||||
String metaFileName) throws NoCurrentCaseException, TskCoreException, IOException {
|
||||
|
||||
// Do not look for metaFile if this is a carved directory
|
||||
if(sqliteFile.getParentPath().contains("carvedfiles")) {
|
||||
if(sqliteFile.getParentPath().equalsIgnoreCase("/$carvedfiles/")) {
|
||||
return;
|
||||
}
|
||||
|
||||
|
@ -427,7 +427,7 @@ public class SQLiteTableReader implements AutoCloseable {
|
||||
String metaFileName) throws NoCurrentCaseException, TskCoreException, IOException {
|
||||
|
||||
// Do not look for metaFile if this is a carved directory
|
||||
if(sqliteFile.getParentPath().contains("carvedfiles")) {
|
||||
if(sqliteFile.getParentPath().equalsIgnoreCase("/$carvedfiles/")) {
|
||||
return;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user