]> git.eshelyaron.com Git - emacs.git/commitdiff
Repair detection of empty mailto URLs
authorPo Lu <luangruo@yahoo.com>
Fri, 20 Oct 2023 11:09:22 +0000 (19:09 +0800)
committerPo Lu <luangruo@yahoo.com>
Fri, 20 Oct 2023 11:09:39 +0000 (19:09 +0800)
* java/org/gnu/emacs/EmacsOpenActivity.java (onCreate):
Additonally regard mailto:// as an empty URL, since Android does
interpret them as such.

java/org/gnu/emacs/EmacsOpenActivity.java

index f0f1068d3e273c33adadba40304378f3661dc64b..a5e8be2f2384d5cba379f2b72048f432db5f454e 100644 (file)
@@ -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);