Merge pull request #1144 from volatilityfoundation/timerliner_missing_macb_times_fix

Add a default 0 value to macb columns to avoid mactime not reporting …
This commit is contained in:
ikelos
2024-05-09 16:35:40 +01:00
committed by GitHub
+4 -4
View File
@@ -183,16 +183,16 @@ class Timeliner(interfaces.plugins.PluginInterface):
plugin_name,
self._sanitize_body_format(item),
self._text_format(
times.get(TimeLinerType.ACCESSED, "")
times.get(TimeLinerType.ACCESSED, "0")
),
self._text_format(
times.get(TimeLinerType.MODIFIED, "")
times.get(TimeLinerType.MODIFIED, "0")
),
self._text_format(
times.get(TimeLinerType.CHANGED, "")
times.get(TimeLinerType.CHANGED, "0")
),
self._text_format(
times.get(TimeLinerType.CREATED, "")
times.get(TimeLinerType.CREATED, "0")
),
)
)