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

Commit 99a846e1 authored by Robert Greenwalt's avatar Robert Greenwalt Committed by Android Git Automerger
Browse files

am 20659cc7: Retry connections that are in SCANNING.

* commit '20659cc7':
  Retry connections that are in SCANNING.
parents 0bc0fc92 20659cc7
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -692,7 +692,8 @@ public final class GsmDataConnectionTracker extends DataConnectionTracker {
                apnContext.setState(DctConstants.State.IDLE);
            }
            if (apnContext.isReady()) {
                if (apnContext.getState() == DctConstants.State.IDLE) {
                if (apnContext.getState() == DctConstants.State.IDLE ||
                        apnContext.getState() == DctConstants.State.SCANNING) {
                    apnContext.setReason(reason);
                    trySetupData(apnContext);
                }