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

Commit 34267f7e authored by Jaikumar Ganesh's avatar Jaikumar Ganesh
Browse files

Fix typo introduced during variable cleanup.

This prevented data connection being established after voice calls on 2G networks.
parent 33a7030f
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1398,7 +1398,7 @@ public final class GsmDataConnectionTracker extends DataConnectionTracker {

    protected void onVoiceCallEnded() {
        if (state == State.CONNECTED) {
            if (mGsmPhone.mSST.isConcurrentVoiceAndData()) {
            if (!mGsmPhone.mSST.isConcurrentVoiceAndData()) {
                startNetStatPoll();
                phone.notifyDataConnection(Phone.REASON_VOICE_CALL_ENDED);
            } else {