am 983b837e: Merge change 23510 into eclair
Merge commit '983b837ea1effc462ecd9c14620b19178f98fd92' into eclair-plus-aosp * commit '983b837ea1effc462ecd9c14620b19178f98fd92': SMS-to-email fix for messages from the web
This commit is contained in:
@@ -383,7 +383,7 @@ public abstract class SmsMessageBase {
|
||||
* 2. [x@y][ ]/[body]
|
||||
*/
|
||||
String[] parts = messageBody.split("( /)|( )", 2);
|
||||
if (parts.length < 1 || parts[0].indexOf('@') == -1) return;
|
||||
if (parts.length < 1) return;
|
||||
emailFrom = parts[0];
|
||||
emailBody = parts[1];
|
||||
isEmail = true;
|
||||
|
||||
Reference in New Issue
Block a user