Pebble: Fix wrong(previous) contact being displayed on the pebble. Fixes #228

master
Andreas Shimokawa 2016-02-20 22:20:02 +01:00
parent 7626667a0a
commit c436c4c055
2 changed files with 2 additions and 1 deletions

View File

@ -4,6 +4,7 @@
* Pebble: Support Pebble Health: steps/activity data are stored correctly. Sleep time is considered as light sleep. Deep sleep is discarded. The pebble will send data where it deems appropriate, there is no action to perform on the watch for this to happen.
* Pebble: Fix support for newer version of morpheuz (>=3.3?)
* Pebble: Allow to select the preferred activity tracker via settings activity (Health, Misfit, Morpheuz)
* Pebble: Fix wrong(previous) contact being displayed on the pebble
* Mi Band: improvements to pairing
####Version 0.7.4

View File

@ -31,7 +31,6 @@ public class PhoneCallReceiver extends BroadcastReceiver {
} else if (TelephonyManager.EXTRA_STATE_RINGING.equals(stateStr)) {
state = TelephonyManager.CALL_STATE_RINGING;
}
onCallStateChanged(context, state, number);
}
}
@ -52,6 +51,7 @@ public class PhoneCallReceiver extends BroadcastReceiver {
callCommand = ServiceCommand.CALL_START;
} else {
callCommand = ServiceCommand.CALL_OUTGOING;
mSavedNumber = number;
}
break;
case TelephonyManager.CALL_STATE_IDLE: