IDEMPIERE-2303 NPE on MailText.parse
This commit is contained in:
parent
6ad4577e1d
commit
5bbeae195b
|
@ -157,7 +157,7 @@ public class MMailText extends X_R_MailText
|
||||||
*/
|
*/
|
||||||
private String parse (String text)
|
private String parse (String text)
|
||||||
{
|
{
|
||||||
if (text.indexOf('@') == -1)
|
if (Util.isEmpty(text) || text.indexOf('@') == -1)
|
||||||
return text;
|
return text;
|
||||||
// Parse User
|
// Parse User
|
||||||
text = parse (text, m_user);
|
text = parse (text, m_user);
|
||||||
|
@ -177,7 +177,7 @@ public class MMailText extends X_R_MailText
|
||||||
*/
|
*/
|
||||||
private String parse (String text, PO po)
|
private String parse (String text, PO po)
|
||||||
{
|
{
|
||||||
if (po == null || text.indexOf('@') == -1)
|
if (po == null || Util.isEmpty(text) || text.indexOf('@') == -1)
|
||||||
return text;
|
return text;
|
||||||
|
|
||||||
String inStr = text;
|
String inStr = text;
|
||||||
|
|
Loading…
Reference in New Issue