We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d01e72a commit dbdd61eCopy full SHA for dbdd61e
src/afterfact.rs
@@ -522,10 +522,9 @@ fn calc_statistic_info(
522
let level_suffix = get_level_suffix(detect_info.level.as_str());
523
let author_list = extract_author_name(&detect_info.ruleauthor);
524
let author_str = author_list.iter().join(", ");
525
- afterfact_info.detect_rule_authors.insert(
526
- detect_info.ruleid.to_owned(),
527
- author_str.to_string().into(),
528
- );
+ afterfact_info
+ .detect_rule_authors
+ .insert(detect_info.ruleid.to_owned(), author_str.to_string().into());
529
530
if author_str != "-"
531
&& !afterfact_info
0 commit comments