Loading k9mail/src/main/java/com/fsck/k9/controller/MessagingController.java +1 −1 Original line number Diff line number Diff line Loading @@ -4318,7 +4318,7 @@ public class MessagingController implements Runnable { return false; } if (account.isNotifyContactsMailOnly() && !contacts.containsContact(message.getFrom())) { if (account.isNotifyContactsMailOnly() && !contacts.isAnyInContacts(message.getFrom())) { return false; } Loading k9mail/src/main/java/com/fsck/k9/helper/Contacts.java +1 −1 Original line number Diff line number Diff line Loading @@ -148,7 +148,7 @@ public class Contacts { * @return <tt>true</tt>, if one address belongs to a contact. * <tt>false</tt>, otherwise. */ public boolean containsContact(final Address[] addresses) { public boolean isAnyInContacts(final Address[] addresses) { if (addresses == null) { return false; } Loading Loading
k9mail/src/main/java/com/fsck/k9/controller/MessagingController.java +1 −1 Original line number Diff line number Diff line Loading @@ -4318,7 +4318,7 @@ public class MessagingController implements Runnable { return false; } if (account.isNotifyContactsMailOnly() && !contacts.containsContact(message.getFrom())) { if (account.isNotifyContactsMailOnly() && !contacts.isAnyInContacts(message.getFrom())) { return false; } Loading
k9mail/src/main/java/com/fsck/k9/helper/Contacts.java +1 −1 Original line number Diff line number Diff line Loading @@ -148,7 +148,7 @@ public class Contacts { * @return <tt>true</tt>, if one address belongs to a contact. * <tt>false</tt>, otherwise. */ public boolean containsContact(final Address[] addresses) { public boolean isAnyInContacts(final Address[] addresses) { if (addresses == null) { return false; } Loading