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

Commit 24670fad authored by Daniel Sandler's avatar Daniel Sandler Committed by Android Git Automerger
Browse files

am 11c6b669: am 26c13439: Set FLAG_SHOW_LIGHTS if *either* on or off is nonzero.

* commit '11c6b669':
  Set FLAG_SHOW_LIGHTS if *either* on or off is nonzero.
parents 9717fff7 11c6b669
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1603,7 +1603,7 @@ public class Notification implements Parcelable
            n.defaults = mDefaults;
            n.flags = mFlags;
            n.bigContentView = makeBigContentView();
            if (mLedOnMs != 0 && mLedOffMs != 0) {
            if (mLedOnMs != 0 || mLedOffMs != 0) {
                n.flags |= FLAG_SHOW_LIGHTS;
            }
            if ((mDefaults & DEFAULT_LIGHTS) != 0) {