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

Commit ae787859 authored by Shareef Ali's avatar Shareef Ali
Browse files

SamsungQualcommRIL: fix passing isgsm flag

Change-Id: I3a07ac5157db9c64bca1016ab137419968c16fe6
parent b7abe4ee
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -183,7 +183,7 @@ public class SamsungQualcommRIL extends RIL implements CommandsInterface {
        }else{ // lte is gsm on samsung/qualcomm cdma stack
            response[7] &= 0xff;
        }
        return new SignalStrength(response[0], response[1], response[2], response[3], response[4], response[5], response[6], response[7], response[8], response[9], response[10], response[11], isGSM);
        return new SignalStrength(response[0], response[1], response[2], response[3], response[4], response[5], response[6], response[7], response[8], response[9], response[10], response[11], (p.readInt() != 0));

    }