Bug 823004 - B2G STK: STK Set-Up idle mode doesn't work properly. r=etienne

This commit is contained in:
Vivien Nicolas 2012-12-28 19:43:49 +01:00
parent 5d38fbdcf6
commit 77439a95ce

View File

@ -688,7 +688,7 @@ var AlertsHelper = {
let message = messages[i];
if (message === "notification") {
return helper.fullLaunchPath();
} else if ("notification" in message) {
} else if (typeof message == "object" && "notification" in message) {
return helper.resolveFromOrigin(message["notification"]);
}
}