From 95443bbab43acbfac1c53420e1b83bf6c451da27 Mon Sep 17 00:00:00 2001 From: DastInDark <2350416+hitenkoku@users.noreply.github.com> Date: Mon, 31 Jul 2023 19:58:46 +0900 Subject: [PATCH] fix(configs): fixed --timeline-start and --timeline-end do not work correctly with json-timeline #1148 --- src/detections/configs.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/detections/configs.rs b/src/detections/configs.rs index 036098d02..630ed4287 100644 --- a/src/detections/configs.rs +++ b/src/detections/configs.rs @@ -1683,7 +1683,7 @@ impl TargetEventTime { "start-timeline field: the timestamp format is not correct.", ); let end_time = get_time( - option.output_options.start_timeline.as_ref(), + option.output_options.end_timeline.as_ref(), "end-timeline field: the timestamp format is not correct.", ); Self::set(parse_success_flag, start_time, end_time)