1
0
Fork 0
mirror of https://github.com/M66B/FairEmail.git synced 2025-03-04 02:28:18 +00:00

Small improvement

This commit is contained in:
M66B 2020-11-04 20:46:20 +01:00
parent cde6bef586
commit e4560402d8

View file

@ -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);