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

Commit c086c04c authored by Lucas Dupin's avatar Lucas Dupin
Browse files

Catch remote exception

Fixes: 180112740
Test: make
Change-Id: Ic4a5e571a3f5d4d89fb2e34e18682d2cee98195b
parent 651112fb
Loading
Loading
Loading
Loading
+5 −1
Original line number Diff line number Diff line
@@ -255,7 +255,11 @@ public class ThemeOverlayApplier implements Dumpable {
        }

        mExecutor.execute(() -> {
            try {
                mOverlayManager.commit(transaction.build());
            } catch (SecurityException | IllegalStateException e) {
                Log.e(TAG, "setEnabled failed", e);
            }
        });
    }