Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 6f98756b authored by Michael Bestas's avatar Michael Bestas
Browse files

health: Catch all exceptions in fastcharge handleSettingChange

Failure when HAL side fails shouldn't crash the system.

Change-Id: I1270a8f6d204630aa18cfdff19903a672dff4210
parent ab383527
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -113,7 +113,7 @@ public class FastChargeController extends LineageHealthFeature {
    private void handleSettingChange() {
        try {
            mFastCharge.setFastChargeMode(getFastChargeMode());
        } catch (RemoteException e) {
        } catch (Exception e) {
        }
    }