We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b505278 commit 86b501cCopy full SHA for 86b501c
1 file changed
mail/common/src/main/java/com/fsck/k9/mail/helper/Rfc822Token.java
@@ -205,6 +205,7 @@ public boolean equals(@Nullable Object o) {
205
}
206
207
public static String withULabelDomain(final String address) {
208
+ if (address == null) return null;
209
int at = address.lastIndexOf('@');
210
if (at < 0 || at == address.length()-1)
211
return address;
0 commit comments