mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-01-14 23:40:39 -08:00
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 @@ 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);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue