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

Commit 6c317acc authored by Android (Google) Code Review's avatar Android (Google) Code Review
Browse files

Merge change 21790 into eclair

* changes:
  Dormant ICON was not being displayed, fixes bug 2039239.
parents 1066cbca d324c81c
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -498,10 +498,10 @@ public final class CdmaDataConnectionTracker extends DataConnectionTracker {
                        sentSinceLastRecv = 0;
                        newActivity = Activity.DATAIN;
                    } else if (sent == 0 && received == 0) {
                        newActivity = Activity.NONE;
                        newActivity = (activity == Activity.DORMANT) ? activity : Activity.NONE;
                    } else {
                        sentSinceLastRecv = 0;
                        newActivity = Activity.NONE;
                        newActivity = (activity == Activity.DORMANT) ? activity : Activity.NONE;
                    }

                    if (activity != newActivity) {