Skip to content

Commit

Permalink
add space
Browse files Browse the repository at this point in the history
  • Loading branch information
YamatoSecurity committed Dec 4, 2024
1 parent d492b37 commit 0526bfa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/timeline/extract_base64.rs
Original file line number Diff line number Diff line change
Expand Up @@ -375,7 +375,7 @@ pub fn output_all(
for row in all_records.clone().iter_mut() {
let binary = row[6].as_str();
if binary == "Y" {
row[3] = "(BinaryData)".to_string();
row[3] = "(Binary Data)".to_string();
}
wtr.write_record(row)?;
}
Expand All @@ -395,7 +395,7 @@ pub fn output_all(
for row in all_records.clone().iter_mut() {
let binary = row[6].as_str();
if binary == "Y" {
row[3] = "(BinaryData)".to_string();
row[3] = "(Binary Data)".to_string();
}
table.add_row(&row[0..4]);
}
Expand Down

0 comments on commit 0526bfa

Please sign in to comment.