Skip to content

Commit

Permalink
fix: fixed duplicate field outputted in extrafieldinfo to remove trim…
Browse files Browse the repository at this point in the history
… space #1186
  • Loading branch information
hitenkoku committed Oct 12, 2023
1 parent 9a3d0dc commit c158988
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/detections/utils.rs
Original file line number Diff line number Diff line change
Expand Up @@ -710,7 +710,7 @@ pub fn remove_sp_char(record_value: CompactString) -> CompactString {
}
!retain_flag
});
newline_replaced_cs.into()
newline_replaced_cs.trim().into()
}

#[cfg(test)]
Expand Down

0 comments on commit c158988

Please sign in to comment.