Skip to content

Commit

Permalink
Merge pull request #1016 from hollykennedy/patch-1
Browse files Browse the repository at this point in the history
Update fsCachedData.py
  • Loading branch information
stark4n6 authored Jan 15, 2025
2 parents 3cc8a13 + 3345efc commit e9e8533
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions scripts/artifacts/fsCachedData.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,25 +30,25 @@ def get_fsCachedData(files_found, report_folder, seeker, wrap_text, timezone_off
if len(data_list) > 0:
note = 'Source location in extraction found in the report for each item.'
description = 'Media files'
report = ArtifactHtmlReport('fsChachedData')
report.start_artifact_report(report_folder, 'fsChachedData', description)
report = ArtifactHtmlReport('fsCachedData')
report.start_artifact_report(report_folder, 'fsCachedData', description)
report.add_script()
data_headers = ('Timestamp Modified', 'Media', 'Mime Type', 'Filename', 'Path')
report.write_artifact_data_table(data_headers, data_list, note, html_no_escape=['Media'])
report.end_artifact_report()

tsvname = 'fsChachedData'
tsvname = 'fsCachedData'
tsv(report_folder, data_headers, data_list, tsvname)

tlactivity = 'fsChachedData'
tlactivity = 'fsCachedData'
timeline(report_folder, tlactivity, data_list, data_headers)
else:
logfunc('No fsChachedData data available')
logfunc('No fsCachedData data available')


__artifacts__ = {
"fsChachedData": (
"fsCachedData": (
"Cache Data",
('*/fsCachedData/**'),
get_fsCachedData)
}
}

0 comments on commit e9e8533

Please sign in to comment.