Skip to content

Commit

Permalink
fix(configs): fixed --timeline-start and --timeline-end do not work c…
Browse files Browse the repository at this point in the history
…orrectly with json-timeline #1148
  • Loading branch information
hitenkoku committed Jul 31, 2023
1 parent a160864 commit 95443bb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/detections/configs.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 95443bb

Please sign in to comment.