mirror of
https://github.com/overcuriousity/autopsy-flatpak.git
synced 2025-07-17 18:17:43 +00:00
fix
This commit is contained in:
parent
35a353fcde
commit
e7aab13f3d
@ -632,9 +632,9 @@ public final class CaseMetadata {
|
|||||||
}
|
}
|
||||||
|
|
||||||
this.fileContentPath = null;
|
this.fileContentPath = null;
|
||||||
NodeList caseElementChildren = caseElement.getElementsByTagName(FILE_CONTENT_PATH);
|
NodeList fileContentChildren = doc.getElementsByTagName(FILE_CONTENT_PATH);
|
||||||
if (caseElementChildren.getLength() == 1) {
|
if (fileContentChildren.getLength() == 1) {
|
||||||
String fileContentTextPath = caseElementChildren.item(0).getTextContent();
|
String fileContentTextPath = fileContentChildren.item(0).getTextContent();
|
||||||
if (StringUtils.isNotBlank(fileContentTextPath)) {
|
if (StringUtils.isNotBlank(fileContentTextPath)) {
|
||||||
this.fileContentPath = fileContentTextPath;
|
this.fileContentPath = fileContentTextPath;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user