send otr messages when contacts comes online

This commit is contained in:
iNPUTmice 2014-06-12 10:41:47 +02:00
parent e353a1c109
commit 18871230e1
3 changed files with 7 additions and 4 deletions

View file

@ -73,7 +73,7 @@ public class PresenceParser extends AbstractParser {
}
updateLastseen(packet, account,true);
mXmppConnectionService.onContactStatusChanged
.onContactStatusChanged(contact);
.onContactStatusChanged(contact,true);
}
} else if (type.equals("unavailable")) {
if (fromParts.length != 2) {
@ -82,7 +82,7 @@ public class PresenceParser extends AbstractParser {
contact.removePresence(fromParts[1]);
}
mXmppConnectionService.onContactStatusChanged
.onContactStatusChanged(contact);
.onContactStatusChanged(contact,false);
} else if (type.equals("subscribe")) {
if (contact.getOption(Contact.Options.PREEMPTIVE_GRANT)) {
mXmppConnectionService.sendPresenceUpdatesTo(contact);

View file

@ -98,10 +98,13 @@ public class XmppConnectionService extends Service {
public OnContactStatusChanged onContactStatusChanged = new OnContactStatusChanged() {
@Override
public void onContactStatusChanged(Contact contact) {
public void onContactStatusChanged(Contact contact, boolean online) {
Conversation conversation = findActiveConversation(contact);
if (conversation != null) {
conversation.endOtrIfNeeded();
if (online&&(contact.getPresences().size() == 1)) {
sendUnsendMessages(conversation);
}
}
}
};

View file

@ -3,5 +3,5 @@ package eu.siacs.conversations.xmpp;
import eu.siacs.conversations.entities.Contact;
public interface OnContactStatusChanged {
public void onContactStatusChanged(Contact contact);
public void onContactStatusChanged(Contact contact, boolean online);
}