mirror of
https://github.com/overcuriousity/autopsy-flatpak.git
synced 2025-07-06 21:00:22 +00:00
Address Comments
Address comments from PR
This commit is contained in:
parent
f3ecd28282
commit
596d888f09
@ -709,7 +709,7 @@ class Chromium extends Extract {
|
||||
Collection<BlackboardArtifact> bbartifacts = new ArrayList<>();
|
||||
int j = 0;
|
||||
while (j < faviconFiles.size()) {
|
||||
if (browser.equals(GOOGLE_PROFILE_NAME)) {
|
||||
if (browser.contains(GOOGLE_PROFILE_NAME)) {
|
||||
String parentPath = FilenameUtils.normalizeNoEndSeparator(faviconFiles.get(j).getParentPath());
|
||||
browserName = GOOGLE_PROFILE + FilenameUtils.getBaseName(parentPath);
|
||||
}
|
||||
@ -827,7 +827,7 @@ class Chromium extends Extract {
|
||||
while (j < loginDataFiles.size()) {
|
||||
if (browser.contains(GOOGLE_PROFILE_NAME)) {
|
||||
String parentPath = FilenameUtils.normalizeNoEndSeparator(loginDataFiles.get(j).getParentPath());
|
||||
browserName = GOOGLE_PROFILE_NAME + FilenameUtils.getBaseName(parentPath);
|
||||
browserName = GOOGLE_PROFILE + FilenameUtils.getBaseName(parentPath);
|
||||
}
|
||||
AbstractFile loginDataFile = loginDataFiles.get(j++);
|
||||
if ((loginDataFile.getSize() == 0) || (loginDataFile.getName().toLowerCase().contains("-slack"))) {
|
||||
@ -939,7 +939,7 @@ class Chromium extends Extract {
|
||||
while (j < webDataFiles.size()) {
|
||||
if (browser.contains(GOOGLE_PROFILE_NAME)) {
|
||||
String parentPath = FilenameUtils.normalizeNoEndSeparator(webDataFiles.get(j).getParentPath());
|
||||
browserName = GOOGLE_PROFILE_NAME + FilenameUtils.getBaseName(parentPath);
|
||||
browserName = GOOGLE_PROFILE + FilenameUtils.getBaseName(parentPath);
|
||||
}
|
||||
databaseEncrypted = false;
|
||||
AbstractFile webDataFile = webDataFiles.get(j++);
|
||||
|
Loading…
x
Reference in New Issue
Block a user