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

Commit 76a99ecc authored by Tracy Zhou's avatar Tracy Zhou Committed by Android (Google) Code Review
Browse files

Merge "Fix npe in FrameHandler" into tm-dev

parents 59c535bb b5f7e4fc
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -83,7 +83,7 @@ public class ViewUtils {
        }

        private boolean schedule() {
            if (mViewRoot.getView() != null) {
            if (mViewRoot != null && mViewRoot.getView() != null) {
                mViewRoot.registerRtFrameCallback(this);
                mViewRoot.getView().invalidate();
                return true;