mirror of
https://github.com/overcuriousity/autopsy-flatpak.git
synced 2025-07-19 19:14:55 +00:00
Merge pull request #2583 from zhhl/fixLogoPathInHTMLReport
fix the logo path using absolute path problem in HTML report
This commit is contained in:
commit
ce14e3465d
@ -855,6 +855,8 @@ class ReportHTML implements TableReportModule {
|
|||||||
if (iconPath == null) {
|
if (iconPath == null) {
|
||||||
// use default Autopsy icon if custom icon is not set
|
// use default Autopsy icon if custom icon is not set
|
||||||
iconPath = "favicon.ico";
|
iconPath = "favicon.ico";
|
||||||
|
} else {
|
||||||
|
iconPath = "agency_logo"; //ref to writeNav() for agency_logo
|
||||||
}
|
}
|
||||||
index.append("<head>\n<title>").append(reportTitle).append(" ").append(
|
index.append("<head>\n<title>").append(reportTitle).append(" ").append(
|
||||||
NbBundle.getMessage(this.getClass(), "ReportHTML.writeIndex.title", currentCase.getDisplayName())).append(
|
NbBundle.getMessage(this.getClass(), "ReportHTML.writeIndex.title", currentCase.getDisplayName())).append(
|
||||||
|
Loading…
x
Reference in New Issue
Block a user