Merge pull request #48 from lambdaupb/reconnectLoopFix

McsService does not back off on Failure (Untested Patch included)
This commit is contained in:
Marvin W 2015-10-29 11:32:49 +01:00
commit 9870ba795f
1 changed files with 3 additions and 5 deletions

View File

@ -377,11 +377,9 @@ public class McsService extends Service implements Handler.Callback {
sslSocket.close();
} catch (Exception ignored) {
}
if (currentDelay == 0) {
sendBroadcast(new Intent("org.microg.gms.gcm.RECONNECT"), "org.microg.gms.STATUS_BROADCAST");
} else {
scheduleReconnect(this);
}
scheduleReconnect(this);
alarmManager.cancel(heartbeatIntent);
if (wakeLock != null) {
wakeLock.release();