removed unnecessary otr error response

This commit is contained in:
iNPUTmice 2014-12-10 14:07:56 +01:00
parent 05d1f46c15
commit 2b958e51df
2 changed files with 0 additions and 12 deletions

View File

@ -124,10 +124,6 @@ public class MessageParser extends AbstractParser implements
finishedMessage.setCounterpart(from);
return finishedMessage;
} catch (Exception e) {
String receivedId = packet.getId();
if (receivedId != null) {
mXmppConnectionService.replyWithNotAcceptable(account, packet);
}
conversation.resetOtrSession();
return null;
}

View File

@ -1969,14 +1969,6 @@ public class XmppConnectionService extends Service {
return this.mBitmapCache;
}
public void replyWithNotAcceptable(Account account, MessagePacket packet) {
if (account.getStatus() == Account.State.ONLINE) {
MessagePacket error = this.mMessageGenerator
.generateNotAcceptable(packet);
sendMessagePacket(account, error);
}
}
public void syncRosterToDisk(final Account account) {
new Thread(new Runnable() {