|
|
@@ -37,11 +37,11 @@ public class MobileTransactionHandler implements AppManagerFunction {
|
|
|
ValidateMobileTransaction validate = new ValidateMobileTransaction();
|
|
|
McomSubscriber originator = McomSubscriber.getMcomSubscriber(msisdn);
|
|
|
if(!originator.isSubscribed()) {
|
|
|
- ret = key + ":99:" + refid + ":" + Messanger.getMessage(MessageId.UNAUTHORISED_ERROR, originator).toString();
|
|
|
+ ret = key + ":99:" + refid + ":" + Messanger.getMessage(MessageId.UNAUTHORISED_ERROR, originator).getMessage();
|
|
|
return new Message(0,0,ret);
|
|
|
}
|
|
|
if(!"ACTIVE".equalsIgnoreCase(originator.getProperty("STATUS"))) {
|
|
|
- ret = key + ":99:" + refid + ":" + Messanger.getMessage(MessageId.INACTIVE_ERROR, originator).toString();
|
|
|
+ ret = key + ":99:" + refid + ":" + Messanger.getMessage(MessageId.INACTIVE_ERROR, originator).getMessage();
|
|
|
return new Message(0,0,ret);
|
|
|
}
|
|
|
if(!validate.isValidVersion(version)) {
|