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

Commit eaffad37 authored by John Spurlock's avatar John Spurlock Committed by Android (Google) Code Review
Browse files

Merge "Fix NPE in Dreams settings." into jb-mr1-dev

parents 702cdf4c 7a99b21a
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -80,7 +80,9 @@ public class DreamComponentPreference extends Preference {
                ServiceManager.getService("dreams"));
        try {
            cn = dm.getDreamComponent();
        } catch (RemoteException ex) {
        } catch (RemoteException ex) { }

        if (cn == null) {
            setSummary("(unknown)");
            return;
        }