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

Commit dc88584a authored by Ricardo Cerqueira's avatar Ricardo Cerqueira
Browse files

LGEQualcommUiccRIL: Fix LTE signal strength

The RSRP sign is wrong, results in always-excellent network indication. Fix
it.

Change-Id: I3ad40eabca88babf41ad89903648e76f6d8c0830
parent 43cce614
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -432,6 +432,9 @@ public class LGEQualcommUiccRIL extends LGEQualcommRIL implements CommandsInterf
                response[i] = -1;
                noLte = true;
            }
            if (i == 8 && !noLte) {
                response[i] *= -1;
            }
        }

        return response;