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

Commit 3a87d97a authored by Rambo Wang's avatar Rambo Wang Committed by Gerrit Code Review
Browse files

Merge "DeviceStateMonitor#setAlwaysReportSignalStrength does not work"

parents 2f5aceca 6388ff7e
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -437,7 +437,9 @@ public class DeviceStateMonitor extends Handler {
     * @param isEnable
     */
    public void setAlwaysReportSignalStrength(boolean isEnable) {
        sendMessage(obtainMessage(EVENT_UPDATE_ALWAYS_REPORT_SIGNAL_STRENGTH, isEnable ? 1 : 0));
        Message msg = obtainMessage(EVENT_UPDATE_ALWAYS_REPORT_SIGNAL_STRENGTH);
        msg.arg1 = isEnable ? 1 : 0;
        sendMessage(msg);
    }

    /**