mirror of
https://github.com/overcuriousity/autopsy-flatpak.git
synced 2025-07-19 11:07:43 +00:00
Fix race condition between report completion and GUI state
This commit is contained in:
parent
98c668e5ee
commit
17b3615976
@ -170,6 +170,8 @@ class ReportGenerator {
|
|||||||
TableReportGenerator generator = new TableReportGenerator(artifactTypeSelections, tagNameSelections, progressPanel, tableReport);
|
TableReportGenerator generator = new TableReportGenerator(artifactTypeSelections, tagNameSelections, progressPanel, tableReport);
|
||||||
generator.execute();
|
generator.execute();
|
||||||
tableReport.endReport();
|
tableReport.endReport();
|
||||||
|
// finish progress, wrap up
|
||||||
|
progressPanel.complete(ReportProgressPanel.ReportStatus.COMPLETE);
|
||||||
errorList = generator.getErrorList();
|
errorList = generator.getErrorList();
|
||||||
});
|
});
|
||||||
worker.execute();
|
worker.execute();
|
||||||
|
@ -114,9 +114,6 @@ class TableReportGenerator {
|
|||||||
// report on the tagged images
|
// report on the tagged images
|
||||||
makeThumbnailTable();
|
makeThumbnailTable();
|
||||||
}
|
}
|
||||||
|
|
||||||
// finish progress, wrap up
|
|
||||||
progressPanel.complete(ReportProgressPanel.ReportStatus.COMPLETE);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Loading…
x
Reference in New Issue
Block a user