Updated the SMS message so that the subject and message are separated
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@777503 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
0206248ffb
commit
b276ba83f7
1 changed files with 1 additions and 1 deletions
|
@ -40,7 +40,7 @@ public class NotificationImpl implements Notification {
|
|||
String sms = getSMSAddress(accountID);
|
||||
if (sms != null) {
|
||||
System.out.println("Sending SMS to " + sms);
|
||||
result &= smsGateway.sendSMS(SCA_TOURS_SMS, sms, subject + message);
|
||||
result &= smsGateway.sendSMS(SCA_TOURS_SMS, sms, subject + ". " + message);
|
||||
}
|
||||
|
||||
return result;
|
||||
|
|
Loading…
Add table
Reference in a new issue