Pebble: wait 4 seconds instead of 2 when notifications/calls trigger reconnection

here
Andreas Shimokawa 2016-04-03 18:36:30 +02:00
parent 7ddfd35c35
commit 4389c1cca3
1 changed files with 1 additions and 1 deletions

View File

@ -83,7 +83,7 @@ public class PebbleSupport extends AbstractSerialDeviceSupport {
return false;
}
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) {
}
}