Merge pull request #219 from aztecrabbit/fix-issue-16

Fix temperature widget not working
This commit is contained in:
xxxserxxx 2022-05-13 13:30:52 -05:00 committed by GitHub
commit b0fd8ac8cd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,3 +1,4 @@
//go:build linux || darwin
// +build linux darwin // +build linux darwin
package devices package devices
@ -15,7 +16,11 @@ func init() {
func getTemps(temps map[string]int) map[string]error { func getTemps(temps map[string]int) map[string]error {
sensors, err := host.SensorsTemperatures() sensors, err := host.SensorsTemperatures()
if err != nil { if err != nil {
return map[string]error{"gopsutil host": err} if _, ok := err.(*host.Warnings); ok {
// ignore warnings
} else {
return map[string]error{"gopsutil host": err}
}
} }
for _, sensor := range sensors { for _, sensor := range sensors {
label := sensorMap[sensor.SensorKey] label := sensorMap[sensor.SensorKey]