1
0
mirror of https://codeberg.org/Freeyourgadget/Gadgetbridge synced 2024-06-28 16:00:12 +02:00

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

This commit is contained in:
Andreas Shimokawa 2016-04-03 18:36:30 +02:00
parent 7ddfd35c35
commit 4389c1cca3

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) {
}
}