Pebble: wait 4 seconds instead of 2 when notifications/calls trigger reconnection
This commit is contained in:
parent
7ddfd35c35
commit
4389c1cca3
|
@ -83,7 +83,7 @@ public class PebbleSupport extends AbstractSerialDeviceSupport {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
try {
|
try {
|
||||||
Thread.sleep(2000); // this is about the time the connect takes, so the notification can come though
|
Thread.sleep(4000); // this is about the time the connect takes, so the notification can come though
|
||||||
} catch (InterruptedException ignored) {
|
} catch (InterruptedException ignored) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue