зеркало из https://github.com/mozilla/pluotsorbet.git
Remove SMS from the NokiaSMSMessages array on 'DeleteMessages'
This commit is contained in:
Родитель
dd786627ee
Коммит
2c7e7f9b7f
|
@ -145,7 +145,6 @@ NokiaMessagingLocalMsgConnection.prototype.sendMessageToServer = function(messag
|
||||||
for (var i = 0; i < MIDP.NokiaSMSMessages.length; i++) {
|
for (var i = 0; i < MIDP.NokiaSMSMessages.length; i++) {
|
||||||
if (MIDP.NokiaSMSMessages[i].id == sms_id) {
|
if (MIDP.NokiaSMSMessages[i].id == sms_id) {
|
||||||
sms = MIDP.NokiaSMSMessages[i];
|
sms = MIDP.NokiaSMSMessages[i];
|
||||||
MIDP.NokiaSMSMessages.splice(i, 1);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -165,6 +164,12 @@ NokiaMessagingLocalMsgConnection.prototype.sendMessageToServer = function(messag
|
||||||
decoder.getValue(DataType.USHORT);
|
decoder.getValue(DataType.USHORT);
|
||||||
decoder.getStart(DataType.ARRAY);
|
decoder.getStart(DataType.ARRAY);
|
||||||
var sms_id = decoder.getValue(DataType.ULONG);
|
var sms_id = decoder.getValue(DataType.ULONG);
|
||||||
|
|
||||||
|
for (var i = 0; i < MIDP.NokiaSMSMessages.length; i++) {
|
||||||
|
if (MIDP.NokiaSMSMessages[i].id == sms_id) {
|
||||||
|
MIDP.NokiaSMSMessages.splice(i, 1);
|
||||||
|
}
|
||||||
|
}
|
||||||
break;
|
break;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
|
|
Загрузка…
Ссылка в новой задаче