changed order of snackbar hints
This commit is contained in:
		
							parent
							
								
									ceddf99aa3
								
							
						
					
					
						commit
						f19b1fb823
					
				| @ -384,7 +384,16 @@ public class ConversationFragment extends Fragment { | ||||
| 		final ConversationActivity activity = (ConversationActivity) getActivity(); | ||||
| 		if (this.conversation != null) { | ||||
| 			final Contact contact = this.conversation.getContact(); | ||||
| 			if (!contact.showInRoster() | ||||
| 			if (this.conversation.isMuted()) { | ||||
| 				showSnackbar(R.string.notifications_disabled, R.string.enable, new OnClickListener() { | ||||
| 					 | ||||
| 					@Override | ||||
| 					public void onClick(View v) { | ||||
| 						conversation.setMutedTill(0); | ||||
| 						updateMessages(); | ||||
| 					} | ||||
| 				}); | ||||
| 			} else if (!contact.showInRoster() | ||||
| 					&& contact | ||||
| 							.getOption(Contact.Options.PENDING_SUBSCRIPTION_REQUEST)) { | ||||
| 				showSnackbar(R.string.contact_added_you, R.string.add_back, | ||||
| @ -406,16 +415,6 @@ public class ConversationFragment extends Fragment { | ||||
| 					break; | ||||
| 				} | ||||
| 			} | ||||
| 			if (this.conversation.isMuted()) { | ||||
| 				showSnackbar(R.string.notifications_disabled, R.string.enable, new OnClickListener() { | ||||
| 					 | ||||
| 					@Override | ||||
| 					public void onClick(View v) { | ||||
| 						conversation.setMutedTill(0); | ||||
| 						updateMessages(); | ||||
| 					} | ||||
| 				}); | ||||
| 			} | ||||
| 			if (this.conversation.getMessages().size() == 0) { | ||||
| 				this.messageList.clear(); | ||||
| 				messagesLoaded = false; | ||||
| @ -494,7 +493,7 @@ public class ConversationFragment extends Fragment { | ||||
| 		Set<String> knownFingerprints = conversation.getContact() | ||||
| 				.getOtrFingerprints(); | ||||
| 		if ((latestEncryption == Message.ENCRYPTION_OTR) | ||||
| 				&& (conversation.hasValidOtrSession() | ||||
| 				&& (conversation.hasValidOtrSession() && (!conversation.isMuted()) | ||||
| 						&& (conversation.getOtrSession().getSessionStatus() == SessionStatus.ENCRYPTED) && (!knownFingerprints | ||||
| 							.contains(conversation.getOtrFingerprint())))) { | ||||
| 			showSnackbar(R.string.unknown_otr_fingerprint, R.string.verify, | ||||
|  | ||||
		Loading…
	
		Reference in New Issue
	
	Block a user
	 iNPUTmice
						iNPUTmice