only end otr session if there is more than one contact presence. reset otherwise

This commit is contained in:
iNPUTmice 2014-10-30 10:59:41 +01:00
parent e4567e7a62
commit 7b4f3637db
1 changed files with 5 additions and 1 deletions

View File

@ -127,7 +127,11 @@ public class XmppConnectionService extends Service {
public void onContactStatusChanged(Contact contact, boolean online) {
Conversation conversation = find(getConversations(), contact);
if (conversation != null) {
conversation.endOtrIfNeeded();
if (online && contact.getPresences().size() > 1) {
conversation.endOtrIfNeeded();
} else {
conversation.resetOtrSession();
}
if (online && (contact.getPresences().size() == 1)) {
sendUnsendMessages(conversation);
}