bugfix: changed condition of onOtrSessionEstablished being called
fixed #1263 fixed #1260 fixed #1293
This commit is contained in:
		
							parent
							
								
									74e05023b4
								
							
						
					
					
						commit
						f74ee765a2
					
				| @ -70,18 +70,18 @@ public class MessageParser extends AbstractParser implements | ||||
| 		try { | ||||
| 			conversation.setLastReceivedOtrMessageId(id); | ||||
| 			Session otrSession = conversation.getOtrSession(); | ||||
| 			SessionStatus before = otrSession.getSessionStatus(); | ||||
| 			body = otrSession.transformReceiving(body); | ||||
| 			SessionStatus after = otrSession.getSessionStatus(); | ||||
| 			if ((before != after) && (after == SessionStatus.ENCRYPTED)) { | ||||
| 			SessionStatus status = otrSession.getSessionStatus(); | ||||
| 			if (body == null && status == SessionStatus.ENCRYPTED) { | ||||
| 				conversation.setNextEncryption(Message.ENCRYPTION_OTR); | ||||
| 				mXmppConnectionService.onOtrSessionEstablished(conversation); | ||||
| 			} else if ((before != after) && (after == SessionStatus.FINISHED)) { | ||||
| 				return null; | ||||
| 			} else if (body == null && status == SessionStatus.FINISHED) { | ||||
| 				conversation.setNextEncryption(Message.ENCRYPTION_NONE); | ||||
| 				conversation.resetOtrSession(); | ||||
| 				mXmppConnectionService.updateConversationUi(); | ||||
| 			} | ||||
| 			if ((body == null) || (body.isEmpty())) { | ||||
| 				return null; | ||||
| 			} else if (body == null || (body.isEmpty())) { | ||||
| 				return null; | ||||
| 			} | ||||
| 			if (body.startsWith(CryptoHelper.FILETRANSFER)) { | ||||
|  | ||||
		Loading…
	
		Reference in New Issue
	
	Block a user
	 Daniel Gultsch
						Daniel Gultsch