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

Commit 8a362186 authored by Hung-ying Tyan's avatar Hung-ying Tyan Committed by Android Git Automerger
Browse files

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

Merge commit 'f1b1eec9' into gingerbread-plus-aosp

* commit 'f1b1eec9':
  SipService: mScreenOn is flipped to wrong value.
parents 9fae3ecc f1b1eec9
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;
            }
        }
    };