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:
@@ -470,7 +470,7 @@ public final class EmacsOpenActivity extends Activity
|
||||
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);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user