Prevent keepalivehandler to crash, to fix
This commit is contained in:
parent
6f06aeacd1
commit
15379a8cbe
1 changed files with 1 additions and 1 deletions
|
@ -36,7 +36,7 @@ public class KeepAliveHandler extends BroadcastReceiver {
|
||||||
try {
|
try {
|
||||||
Thread.sleep(2000);
|
Thread.sleep(2000);
|
||||||
} catch (InterruptedException e) {
|
} catch (InterruptedException e) {
|
||||||
Log.e("Cannot sleep for 2s", e);
|
//Log.e("Cannot sleep for 2s", e); //TODO FIXME Crash since the log rework
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue