This commit is contained in:
M66B 2021-07-07 06:59:47 +02:00
parent b2d37c3964
commit c728b18036
1 changed files with 1 additions and 1 deletions

View File

@ -563,7 +563,7 @@ public class FragmentDialogOpenLink extends FragmentDialogBase {
host = Uri.decode(host);
text = "tel://" + host;
} else if ("mailto".equals(scheme)) {
if (host != null) {
if (host == null) {
MailTo email = MailTo.parse(uri.toString());
host = UriHelper.getEmailDomain(email.getTo());
}