Skip to content

Commit

Permalink
fix(afterfact): fixed wrong field separate to cmd option in json-time…
Browse files Browse the repository at this point in the history
…line #1145
  • Loading branch information
hitenkoku committed Aug 2, 2023
1 parent 3b4146f commit e1558c1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/afterfact.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1463,7 +1463,7 @@ pub fn output_json_str(
let mut space_split_contents = detail_contents.split(' ');
while let Some(sp) = space_split_contents.next() {
if !sp.contains('\\')
&& !sp.starts_with('-')
&& !sp.starts_with(['-', '/'])
&& sp.ends_with(':')
&& sp.len() > 2
{
Expand Down

0 comments on commit e1558c1

Please sign in to comment.