Commit 8fa0f13e authored by Po Lu's avatar Po Lu
Browse files

Repair detection of empty mailto URLs

* java/org/gnu/emacs/EmacsOpenActivity.java (onCreate):
Additonally regard mailto:// as an empty URL, since Android does
interpret them as such.
parent feba0dd4
Pipeline #26828 failed with stages
in 78 minutes and 47 seconds
......@@ -470,7 +470,7 @@
whereupon Emacs should replace it with any address
provided as EXTRA_EMAIL. */
if (fileName.equals ("mailto:"))
if (fileName.equals ("mailto:") || fileName.equals ("mailto://"))
{
tem = intent.getCharSequenceExtra (Intent.EXTRA_EMAIL);
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment