# HG changeset patch # User Da Risk # Date 1317629541 -7200 # Node ID bdaaf0226e93918bbd9d92874baa44f164d8fa68 # Parent b75998f7908988cd75cc6ad61e2881990248486d Fix a an IllegalArgumentException bug in Login Anim. This bug appears when the application try to unbind the service twice. diff -r b75998f79089 -r bdaaf0226e93 src/com/beem/project/beem/ui/LoginAnim.java --- a/src/com/beem/project/beem/ui/LoginAnim.java Mon Sep 05 18:10:16 2011 +0200 +++ b/src/com/beem/project/beem/ui/LoginAnim.java Mon Oct 03 10:12:21 2011 +0200 @@ -151,6 +151,7 @@ if (mBinded && mTask.getStatus() != AsyncTask.Status.RUNNING) { unbindService(mServConn); mXmppFacade = null; + mBinded = false; } unregisterReceiver(mSslReceiver); }