From 4cdedffaeee01190a054498dce21b5003496a71e Mon Sep 17 00:00:00 2001 From: Clement Tsang <34804052+ClementTsang@users.noreply.github.com> Date: Sat, 6 May 2023 00:58:19 -0400 Subject: [PATCH] other: use sysinfo for temps for android and ios (#1130) --- src/app/data_harvester/temperature.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/data_harvester/temperature.rs b/src/app/data_harvester/temperature.rs index 4ad76232..ea30f760 100644 --- a/src/app/data_harvester/temperature.rs +++ b/src/app/data_harvester/temperature.rs @@ -7,7 +7,7 @@ cfg_if::cfg_if! { if #[cfg(target_os = "linux")] { pub mod linux; pub use self::linux::*; - } else if #[cfg(any(target_os = "freebsd", target_os = "macos", target_os = "windows"))] { + } else if #[cfg(any(target_os = "freebsd", target_os = "macos", target_os = "windows", target_os = "android", target_os = "ios"))] { pub mod sysinfo; pub use self::sysinfo::*; }