mirror of
https://github.com/overcuriousity/autopsy-flatpak.git
synced 2025-07-13 08:26:15 +00:00
Merge pull request #7535 from kellykelly3/8152-nfe-in-ra
8152 Added check for empty string
This commit is contained in:
commit
6d78d25a36
@ -449,9 +449,12 @@ class Firefox extends Extract {
|
|||||||
NbBundle.getMessage(this.getClass(), "Firefox.moduleName")));
|
NbBundle.getMessage(this.getClass(), "Firefox.moduleName")));
|
||||||
|
|
||||||
if (checkColumn == true) {
|
if (checkColumn == true) {
|
||||||
bbattributes.add(new BlackboardAttribute(ATTRIBUTE_TYPE.TSK_DATETIME_CREATED,
|
String value = result.get("creationTime").toString();
|
||||||
RecentActivityExtracterModuleFactory.getModuleName(),
|
if(value != null && !value.isEmpty()) {
|
||||||
(Long.valueOf(result.get("creationTime").toString())))); //NON-NLS
|
bbattributes.add(new BlackboardAttribute(ATTRIBUTE_TYPE.TSK_DATETIME_CREATED,
|
||||||
|
RecentActivityExtracterModuleFactory.getModuleName(),
|
||||||
|
(Long.valueOf(result.get("creationTime").toString())))); //NON-NLS
|
||||||
|
}
|
||||||
}
|
}
|
||||||
String domain = extractDomain(host);
|
String domain = extractDomain(host);
|
||||||
if (domain != null && domain.isEmpty() == false) {
|
if (domain != null && domain.isEmpty() == false) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user