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

Commit f1b1eec9 authored by Hung-ying Tyan's avatar Hung-ying Tyan Committed by Android (Google) Code Review
Browse files

Merge "SipService: mScreenOn is flipped to wrong value." into gingerbread

parents ab39f1ef d6fc979e
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -126,9 +126,9 @@ public final class SipService extends ISipService.Stub {
        public void onReceive(Context context, Intent intent) {
            String action = intent.getAction();
            if (Intent.ACTION_SCREEN_OFF.equals(action)) {
                mScreenOn = true;
            } else if (Intent.ACTION_SCREEN_ON.equals(action)) {
                mScreenOn = false;
            } else if (Intent.ACTION_SCREEN_ON.equals(action)) {
                mScreenOn = true;
            }
        }
    };