mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 728864 - B2g SMS: Fix SMS success notifications. r=qDot DONTBUILD because NPOTB
--HG-- extra : rebase_source : 4ef167621f0e38b8d446bd09a117973ef8431aef
This commit is contained in:
parent
ded9d399f1
commit
b649557f72
@ -319,15 +319,15 @@ RadioInterfaceLayer.prototype = {
|
||||
},
|
||||
|
||||
handleSmsSent: function handleSmsSent(message) {
|
||||
let message = gSmsService.createSmsMessage(-1,
|
||||
DOM_SMS_DELIVERY_SENT,
|
||||
message.SMSC,
|
||||
message.number,
|
||||
message.body,
|
||||
Date.now());
|
||||
let sms = gSmsService.createSmsMessage(-1,
|
||||
DOM_SMS_DELIVERY_SENT,
|
||||
null,
|
||||
message.number,
|
||||
message.body,
|
||||
Date.now());
|
||||
//TODO At this point we should save the sms into the DB (bug 712809)
|
||||
//TODO handle errors (bug XXX)
|
||||
gSmsRequestManager.notifySmsSent(message.requestId, message);
|
||||
//TODO handle errors (bug 727319)
|
||||
gSmsRequestManager.notifySmsSent(message.requestId, sms);
|
||||
},
|
||||
|
||||
/**
|
||||
|
Loading…
Reference in New Issue
Block a user