From 8b195ebf4a740619714d7041c211d8cc2286d233 Mon Sep 17 00:00:00 2001 From: Vicki Pfau Date: Mon, 13 May 2024 18:55:17 -0700 Subject: [PATCH] manager/user: Fix SetFanControlState relay --- src/manager/user.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/manager/user.rs b/src/manager/user.rs index 2ec8061..929d40f 100644 --- a/src/manager/user.rs +++ b/src/manager/user.rs @@ -120,7 +120,7 @@ impl SteamOSManager { #[zbus(property)] async fn set_fan_control_state(&self, state: u32) -> zbus::Result<()> { - setter!(self, "SetFanControlState", state) + setter!(self, "FanControlState", state) } #[zbus(property(emits_changed_signal = "const"))]