aboutsummaryrefslogtreecommitdiffhomepage
path: root/crates/shirabe/src/installer/suggested_packages_reporter.rs
diff options
context:
space:
mode:
Diffstat (limited to 'crates/shirabe/src/installer/suggested_packages_reporter.rs')
-rw-r--r--crates/shirabe/src/installer/suggested_packages_reporter.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/shirabe/src/installer/suggested_packages_reporter.rs b/crates/shirabe/src/installer/suggested_packages_reporter.rs
index 31a34d8..c820009 100644
--- a/crates/shirabe/src/installer/suggested_packages_reporter.rs
+++ b/crates/shirabe/src/installer/suggested_packages_reporter.rs
@@ -161,7 +161,7 @@ impl SuggestedPackagesReporter {
let mut installed_names: Vec<String> = Vec::new();
if installed_repo.is_some() && !suggested_packages.is_empty() {
for package in installed_repo.unwrap().get_packages() {
- installed_names.extend(package.get_names());
+ installed_names.extend(package.get_names(true));
}
}