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

Commit 9a097830 authored by Pranav Vashi's avatar Pranav Vashi Committed by Joey
Browse files

livedisplay: don't throw exception if config is not ready, warning is enough



Throwing an exception leads to rescueMode in oreo

Change-Id: I9c4cb7af8cae51936f439641b79ae522c84eaaee
Signed-off-by: default avatarPranav Vashi <neobuddy89@gmail.com>
parent 6b441055
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -160,7 +160,7 @@ public class LiveDisplayManager {
        try {
            mConfig = sService.getConfig();
            if (mConfig == null) {
                throw new RuntimeException("Unable to get LiveDisplay configuration!");
                Log.w(TAG, "Unable to get LiveDisplay configuration!");
            }
        } catch (RemoteException e) {
            throw new RuntimeException("Unable to fetch LiveDisplay configuration!", e);