Fix SMS CAL command

This commit is contained in:
Milos Kozak 2019-03-31 23:49:01 +02:00
parent 361ffa91c8
commit 1e1c74f420

View file

@ -729,7 +729,7 @@ public class SmsCommunicatorPlugin extends PluginBase {
String passCode = generatePasscode(); String passCode = generatePasscode();
String reply = String.format(MainApp.gs(R.string.smscommunicator_calibrationreplywithcode), cal, passCode); String reply = String.format(MainApp.gs(R.string.smscommunicator_calibrationreplywithcode), cal, passCode);
receivedSms.processed = true; receivedSms.processed = true;
messageToConfirm = new AuthRequest(this, receivedSms, reply, passCode, new SmsAction() { messageToConfirm = new AuthRequest(this, receivedSms, reply, passCode, new SmsAction(cal) {
@Override @Override
public void run() { public void run() {
boolean result = XdripCalibrations.sendIntent(aDouble); boolean result = XdripCalibrations.sendIntent(aDouble);