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

Commit bff05353 authored by Daniel Hillenbrand's avatar Daniel Hillenbrand Committed by Gerrit Code Review
Browse files

Merge "SamsungRIL: Update HSDPA checking for jellybean" into jellybean

parents ffe258cd 7e06e52d
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -379,9 +379,9 @@ public class SamsungRIL extends RIL implements CommandsInterface {
            String curState = SystemProperties.get(TelephonyProperties.PROPERTY_DATA_NETWORK_TYPE);
            boolean curHsdpa = false;

            if (curState.equals("HSDPA:9")) {
            if (curState.startsWith("HSDPA")) {
                curHsdpa = true;
            } else if (!curState.equals("UMTS:3")) {
            } else if (!curState.startsWith("UMTS")) {
                // Don't send poll request if not on 3g
                break;
            }