Properly merge EXTRA_EMAIL content with mailto URIs
* java/org/gnu/emacs/EmacsOpenActivity.java (onCreate): EXTRA_EMAIL is an array rather than a string, so insert its first element into an empty mailto URI.
This commit is contained in:
parent
1fe9498880
commit
bda31b2c6d
1 changed files with 7 additions and 6 deletions
|
@ -414,6 +414,7 @@ private class EmacsClientThread extends Thread
|
|||
String subjectString, textString, attachmentString;
|
||||
CharSequence tem;
|
||||
String tem1;
|
||||
String[] emails;
|
||||
StringBuilder builder;
|
||||
List<Parcelable> list;
|
||||
|
||||
|
@ -466,16 +467,16 @@ private class EmacsClientThread extends Thread
|
|||
/* If fileName is merely mailto: (absent either an email
|
||||
address or content), then the program launching Emacs
|
||||
conceivably provided such an URI to exclude non-email
|
||||
programs from being enumerated within the Share dialog;
|
||||
whereupon Emacs should replace it with any address
|
||||
provided as EXTRA_EMAIL. */
|
||||
programs from the Share dialog. Intents created thus
|
||||
might hold the recipient email as a string array, which
|
||||
is non-standard behavior. */
|
||||
|
||||
if (fileName.equals ("mailto:") || fileName.equals ("mailto://"))
|
||||
{
|
||||
tem = intent.getCharSequenceExtra (Intent.EXTRA_EMAIL);
|
||||
emails = intent.getStringArrayExtra (Intent.EXTRA_EMAIL);
|
||||
|
||||
if (tem != null)
|
||||
fileName = "mailto:" + tem;
|
||||
if (emails[0] != null && emails.length > 0)
|
||||
fileName = "mailto:" + emails[0];
|
||||
}
|
||||
|
||||
/* Subsequently, escape fileName such that it is rendered
|
||||
|
|
Loading…
Add table
Reference in a new issue