aboutsummaryrefslogtreecommitdiffhomepage
path: root/crates
diff options
context:
space:
mode:
Diffstat (limited to 'crates')
-rw-r--r--crates/shirabe/src/advisory/auditor.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/crates/shirabe/src/advisory/auditor.rs b/crates/shirabe/src/advisory/auditor.rs
index 5c20ec67..6da00e86 100644
--- a/crates/shirabe/src/advisory/auditor.rs
+++ b/crates/shirabe/src/advisory/auditor.rs
@@ -489,7 +489,7 @@ impl Auditor {
.set_headers(headers.into_iter().map(|h| h.into()).collect());
table.add_row(
row.iter()
- .map(|cell| ConsoleIO::sanitize(cell, false).into())
+ .map(|cell| ConsoleIO::sanitize(cell, true).into())
.collect::<Vec<Cell>>()
.into(),
);
@@ -614,9 +614,9 @@ impl Auditor {
"none".to_string()
};
let row: Vec<Cell> = vec![
- ConsoleIO::sanitize(&self.get_package_name_with_link(pkg.clone().into()), false)
+ ConsoleIO::sanitize(&self.get_package_name_with_link(pkg.clone().into()), true)
.into(),
- ConsoleIO::sanitize(&replacement, false).into(),
+ ConsoleIO::sanitize(&replacement, true).into(),
];
table.add_row(row.into());
}