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.
This commit is contained in:
parent
feba0dd457
commit
8fa0f13e6e
1 changed files with 1 additions and 1 deletions
|
@ -470,7 +470,7 @@ private class EmacsClientThread extends Thread
|
|||
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);
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue