temporarliy got rid of some insane work arounds in favor of some maybe less insane work arounds

This commit is contained in:
iNPUTmice 2014-11-11 00:16:43 +01:00
parent c8a6b05163
commit fce78abb1c
3 changed files with 17 additions and 14 deletions

View File

@ -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();

View File

@ -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();
}
});
}

View File

@ -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