Pebble: fix incoming calls (recently broken)

master
Andreas Shimokawa 2017-01-10 18:23:35 +01:00
parent 8f988de49d
commit f2e6ce6380
1 changed files with 2 additions and 4 deletions

View File

@ -121,13 +121,11 @@ public class PebbleSupport extends AbstractSerialDeviceSupport {
@Override @Override
public void onSetCallState(CallSpec callSpec) { public void onSetCallState(CallSpec callSpec) {
if (reconnect()) { if (reconnect()) {
if (callSpec.command == CallSpec.CALL_OUTGOING) { if ((callSpec.command != CallSpec.CALL_OUTGOING) || GBApplication.getPrefs().getBoolean("pebble_enable_outgoing_call", true)) {
if (GBApplication.getPrefs().getBoolean("pebble_enable_outgoing_call",true)) {
super.onSetCallState(callSpec); super.onSetCallState(callSpec);
} }
} }
} }
}
@Override @Override
public void onSetMusicState(MusicStateSpec musicStateSpec) { public void onSetMusicState(MusicStateSpec musicStateSpec) {