mirror of
https://github.com/overcuriousity/autopsy-flatpak.git
synced 2025-07-12 16:06:15 +00:00
Merge pull request #7319 from APriestman/8073_fixReportNPE
8073 Don't attempt to filter content with no data source in table report module.
This commit is contained in:
commit
5784b420f8
@ -1826,6 +1826,10 @@ class TableReportGenerator {
|
||||
return false;
|
||||
}
|
||||
|
||||
if (content.getDataSource() == null) {
|
||||
return false;
|
||||
}
|
||||
|
||||
long dataSourceId = content.getDataSource().getId();
|
||||
return !this.settings.getSelectedDataSources().contains(dataSourceId);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user