mirror of
https://github.com/overcuriousity/autopsy-flatpak.git
synced 2025-07-14 17:06:16 +00:00
Merge branch '5368-GroupByPathModifications' of https://github.com/wschaeferB/autopsy into 5657-FileDiscoveryTopComponent
This commit is contained in:
commit
cf422765c7
@ -663,7 +663,7 @@ class FileSearch {
|
||||
private static class ParentPathGroupKey extends GroupKey {
|
||||
|
||||
private String parentPath;
|
||||
private Long parentID = -1L;
|
||||
private Long parentID;
|
||||
|
||||
ParentPathGroupKey(ResultFile file) {
|
||||
if (file.getFirstInstance().getParentPath() != null) {
|
||||
@ -673,9 +673,11 @@ class FileSearch {
|
||||
parentID = file.getFirstInstance().getParent().getId();
|
||||
} catch (TskCoreException ingored) {
|
||||
parentPath = file.getFirstInstance().getParentPath();
|
||||
parentID = -1L;
|
||||
}
|
||||
} else {
|
||||
parentPath = ""; // NON-NLS
|
||||
parentID = -1L;
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user