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

Commit 9173fa39 authored by Johannes Gallmann's avatar Johannes Gallmann
Browse files

Catch SecurityException in SystemUIProxy

Bug: 305121245
Flag: NONE
Test: presubmit
Change-Id: I6e43d8c55b2fe3089254137213caefd42182fd4a
parent 93f8778d
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1209,7 +1209,7 @@ public class SystemUiProxy implements ISystemUiProxy {
        }
        try {
            mBackAnimation.setBackToLauncherCallback(callback, runner);
        } catch (RemoteException e) {
        } catch (RemoteException | SecurityException e) {
            Log.e(TAG, "Failed call setBackToLauncherCallback", e);
        }
    }