mirror of
https://github.com/overcuriousity/autopsy-flatpak.git
synced 2025-07-12 16:06: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")));
|
||||
|
||||
if (checkColumn == true) {
|
||||
bbattributes.add(new BlackboardAttribute(ATTRIBUTE_TYPE.TSK_DATETIME_CREATED,
|
||||
RecentActivityExtracterModuleFactory.getModuleName(),
|
||||
(Long.valueOf(result.get("creationTime").toString())))); //NON-NLS
|
||||
String value = result.get("creationTime").toString();
|
||||
if(value != null && !value.isEmpty()) {
|
||||
bbattributes.add(new BlackboardAttribute(ATTRIBUTE_TYPE.TSK_DATETIME_CREATED,
|
||||
RecentActivityExtracterModuleFactory.getModuleName(),
|
||||
(Long.valueOf(result.get("creationTime").toString())))); //NON-NLS
|
||||
}
|
||||
}
|
||||
String domain = extractDomain(host);
|
||||
if (domain != null && domain.isEmpty() == false) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user