From 5f87968c7cfe21ab540e77a0074ff7712969e5e5 Mon Sep 17 00:00:00 2001 From: Philipp von Weitershausen Date: Wed, 28 Nov 2012 11:23:56 -0800 Subject: [PATCH] Bug 812368 follow-up: fix system message broadcast. r=fabrice --- dom/system/gonk/RadioInterfaceLayer.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dom/system/gonk/RadioInterfaceLayer.js b/dom/system/gonk/RadioInterfaceLayer.js index 829fc4c2575..8849dbb8144 100644 --- a/dom/system/gonk/RadioInterfaceLayer.js +++ b/dom/system/gonk/RadioInterfaceLayer.js @@ -1147,7 +1147,7 @@ RadioInterfaceLayer.prototype = { * to start bringing up the Phone app already. */ handleCallRing: function handleCallRing() { - gSystemMessenger.broadcastMessage("telephony-new-call"); + gSystemMessenger.broadcastMessage("telephony-new-call", {}); }, /** @@ -1159,7 +1159,7 @@ RadioInterfaceLayer.prototype = { call.state = convertRILCallState(call.state); if (call.state == nsIRadioInterfaceLayer.CALL_STATE_DIALING) { - gSystemMessenger.broadcastMessage("telephony-new-call"); + gSystemMessenger.broadcastMessage("telephony-new-call", {}); } if (call.isActive) {