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

Commit b053b3cc authored by Sungmin Choi's avatar Sungmin Choi Committed by Vineeta Srivastava
Browse files

TDSCDMA: RSSI bar moves 1 bar into no signal without going through 0 bar



Bug: 24850563
Change-Id: I36e54e9bde9610f908b1092e11c476dcae76526d
Signed-off-by: default avatarhaesun.kim <haesun.kim@lge.com>
Signed-off-by: default avatarSungmin Choi <sungmin.choi@lge.com>
parent c4c42d55
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -911,7 +911,7 @@ public class SignalStrength implements Parcelable {
        else if (tdScdmaDbm >= -49) level = SIGNAL_STRENGTH_GREAT;
        else if (tdScdmaDbm >= -73) level = SIGNAL_STRENGTH_GOOD;
        else if (tdScdmaDbm >= -97) level = SIGNAL_STRENGTH_MODERATE;
        else if (tdScdmaDbm >= -120) level = SIGNAL_STRENGTH_POOR;
        else if (tdScdmaDbm >= -110) level = SIGNAL_STRENGTH_POOR;
        else level = SIGNAL_STRENGTH_NONE_OR_UNKNOWN;

        if (DBG) log("getTdScdmaLevel = " + level);