don't set notification mode to background when on pause

This commit is contained in:
Daniel Gultsch 2016-08-26 21:13:33 +02:00
parent ad994a2f4c
commit ea0e6d0619
1 changed files with 0 additions and 6 deletions

View File

@ -1066,9 +1066,6 @@ public class ConversationActivity extends XmppActivity
listView.discardUndo();
super.onPause();
this.mActivityPaused = true;
if (this.xmppConnectionServiceBound) {
this.xmppConnectionService.getNotificationService().setIsInForeground(false);
}
}
@Override
@ -1080,9 +1077,6 @@ public class ConversationActivity extends XmppActivity
recreate();
}
this.mActivityPaused = false;
if (this.xmppConnectionServiceBound) {
this.xmppConnectionService.getNotificationService().setIsInForeground(true);
}
if (!isConversationsOverviewVisable() || !isConversationsOverviewHideable()) {
sendReadMarkerIfNecessary(getSelectedConversation());