瀏覽代碼

Treat Unknown as full

Unknown means the charging threshold was reached
Thomas Dy 9 年之前
父節點
當前提交
304d2ca156
共有 1 個文件被更改,包括 1 次插入0 次删除
  1. 1 0
      src/sensors/tp_battery.rs

+ 1 - 0
src/sensors/tp_battery.rs

@@ -42,6 +42,7 @@ impl TPBatterySensor {
     fn parse_status(s: &str) -> Status {
         match s {
             "Full" => Status::FULL,
+            "Unknown" => Status::FULL,
             "Charging" => Status::CHARGING,
             _ => Status::DISCHARGING
         }