mirror of
https://github.com/M66B/FairEmail.git
synced 2026-04-04 16:16:33 +02:00
Small improvement
This commit is contained in:
@@ -427,6 +427,8 @@ public class Helper {
|
||||
static Integer getBatteryLevel(Context context) {
|
||||
try {
|
||||
BatteryManager bm = (BatteryManager) context.getSystemService(Context.BATTERY_SERVICE);
|
||||
if (bm == null)
|
||||
return null;
|
||||
return bm.getIntProperty(BatteryManager.BATTERY_PROPERTY_CAPACITY);
|
||||
} catch (Throwable ex) {
|
||||
Log.e(ex);
|
||||
@@ -439,6 +441,8 @@ public class Helper {
|
||||
return false;
|
||||
try {
|
||||
BatteryManager bm = (BatteryManager) context.getSystemService(Context.BATTERY_SERVICE);
|
||||
if (bm == null)
|
||||
return false;
|
||||
return bm.isCharging();
|
||||
} catch (Throwable ex) {
|
||||
Log.e(ex);
|
||||
|
||||
Reference in New Issue
Block a user