bugfix: fix profile fan modes and creating

This commit is contained in:
Luke D. Jones
2021-05-26 09:24:18 +12:00
parent b2dc610c0b
commit 36bba75c50
7 changed files with 25 additions and 18 deletions

View File

@@ -473,8 +473,8 @@ fn handle_profile(
}
if cmd.profiles_data {
println!("Profiles:");
for s in dbus.proxies().profile().all_profile_data()?.lines() {
println!("{}", s);
for s in dbus.proxies().profile().all_profile_data()? {
println!("{:?}", s);
}
}