temporarliy got rid of some insane work arounds in favor of some maybe less insane work arounds
This commit is contained in:
parent
c8a6b05163
commit
fce78abb1c
|
@ -401,10 +401,10 @@ public class XmppConnectionService extends Service {
|
|||
}
|
||||
}
|
||||
}
|
||||
PowerManager pm = (PowerManager) this.getSystemService(Context.POWER_SERVICE);
|
||||
/*PowerManager pm = (PowerManager) this.getSystemService(Context.POWER_SERVICE);
|
||||
if (!pm.isScreenOn()) {
|
||||
removeStaleListeners();
|
||||
}
|
||||
}*/
|
||||
if (wakeLock.isHeld()) {
|
||||
try {
|
||||
wakeLock.release();
|
||||
|
@ -1080,11 +1080,11 @@ public class XmppConnectionService extends Service {
|
|||
|
||||
public void setOnConversationListChangedListener(
|
||||
OnConversationUpdate listener) {
|
||||
if (!isScreenOn()) {
|
||||
/*if (!isScreenOn()) {
|
||||
Log.d(Config.LOGTAG,
|
||||
"ignoring setOnConversationListChangedListener");
|
||||
return;
|
||||
}
|
||||
}*/
|
||||
synchronized (this.convChangedListenerCount) {
|
||||
if (checkListeners()) {
|
||||
switchToForeground();
|
||||
|
@ -1110,10 +1110,10 @@ public class XmppConnectionService extends Service {
|
|||
}
|
||||
|
||||
public void setOnAccountListChangedListener(OnAccountUpdate listener) {
|
||||
if (!isScreenOn()) {
|
||||
/*if (!isScreenOn()) {
|
||||
Log.d(Config.LOGTAG, "ignoring setOnAccountListChangedListener");
|
||||
return;
|
||||
}
|
||||
}*/
|
||||
synchronized (this.accountChangedListenerCount) {
|
||||
if (checkListeners()) {
|
||||
switchToForeground();
|
||||
|
@ -1137,10 +1137,10 @@ public class XmppConnectionService extends Service {
|
|||
}
|
||||
|
||||
public void setOnRosterUpdateListener(OnRosterUpdate listener) {
|
||||
if (!isScreenOn()) {
|
||||
/*if (!isScreenOn()) {
|
||||
Log.d(Config.LOGTAG, "ignoring setOnRosterUpdateListener");
|
||||
return;
|
||||
}
|
||||
}*/
|
||||
synchronized (this.rosterChangedListenerCount) {
|
||||
if (checkListeners()) {
|
||||
switchToForeground();
|
||||
|
|
|
@ -896,12 +896,11 @@ public class ConversationActivity extends XmppActivity implements
|
|||
public void run() {
|
||||
updateConversationList();
|
||||
if (conversationList.size() == 0) {
|
||||
startActivity(new Intent(getApplicationContext(),
|
||||
StartConversationActivity.class));
|
||||
finish();
|
||||
} else {
|
||||
ConversationActivity.this.mConversationFragment.updateMessages();
|
||||
startActivity(new Intent(getApplicationContext(),
|
||||
StartConversationActivity.class));
|
||||
finish();
|
||||
}
|
||||
ConversationActivity.this.mConversationFragment.updateMessages();
|
||||
}
|
||||
});
|
||||
}
|
||||
|
|
|
@ -105,7 +105,11 @@ public abstract class XmppActivity extends Activity {
|
|||
XmppConnectionBinder binder = (XmppConnectionBinder) service;
|
||||
xmppConnectionService = binder.getService();
|
||||
xmppConnectionServiceBound = true;
|
||||
onBackendConnected();
|
||||
if (!isFinishing() && !isDestroyed()) {
|
||||
onBackendConnected();
|
||||
} else {
|
||||
Log.d(Config.LOGTAG,"omitting call to onBackendConnected()");
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
Loading…
Reference in a new issue