Merge change I3ff560d7 into eclair
* changes: Send "encoding problem" to the network for general errors during SMS dispatch.
This commit is contained in:
@@ -148,6 +148,7 @@ public interface CommandsInterface {
|
||||
static final int CDMA_SMS_FAIL_CAUSE_INVALID_TELESERVICE_ID = 4;
|
||||
static final int CDMA_SMS_FAIL_CAUSE_RESOURCE_SHORTAGE = 35;
|
||||
static final int CDMA_SMS_FAIL_CAUSE_OTHER_TERMINAL_PROBLEM = 39;
|
||||
static final int CDMA_SMS_FAIL_CAUSE_ENCODING_PROBLEM = 96;
|
||||
|
||||
//***** Methods
|
||||
|
||||
|
||||
@@ -481,7 +481,7 @@ final class CdmaSMSDispatcher extends SMSDispatcher {
|
||||
return CommandsInterface.CDMA_SMS_FAIL_CAUSE_INVALID_TELESERVICE_ID;
|
||||
case Intents.RESULT_SMS_GENERIC_ERROR:
|
||||
default:
|
||||
return CommandsInterface.CDMA_SMS_FAIL_CAUSE_OTHER_TERMINAL_PROBLEM;
|
||||
return CommandsInterface.CDMA_SMS_FAIL_CAUSE_ENCODING_PROBLEM;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user