simplified determination whether otr needs starting in a session

This commit is contained in:
iNPUTmice 2014-10-16 16:09:54 +02:00
parent c1a55608df
commit 0fd634ae52
1 changed files with 2 additions and 7 deletions

View File

@ -72,8 +72,6 @@ public class Conversation extends AbstractEntity {
private byte[] symmetricKey;
private boolean otrSessionNeedsStarting = false;
private Bookmark bookmark;
public Conversation(String name, Account account, String contactJid,
@ -264,10 +262,7 @@ public class Conversation extends AbstractEntity {
try {
if (sendStart) {
this.otrSession.startSession();
this.otrSessionNeedsStarting = false;
return this.otrSession;
} else {
this.otrSessionNeedsStarting = true;
}
return this.otrSession;
} catch (OtrException e) {
@ -283,12 +278,12 @@ public class Conversation extends AbstractEntity {
public void resetOtrSession() {
this.otrFingerprint = null;
this.otrSessionNeedsStarting = false;
this.otrSession = null;
}
public void startOtrIfNeeded() {
if (this.otrSession != null && this.otrSessionNeedsStarting) {
if (this.otrSession != null
&& this.otrSession.getSessionStatus() != SessionStatus.ENCRYPTED) {
try {
this.otrSession.startSession();
} catch (OtrException e) {