From d4a81c5de43ba4eed359ef0e25ed24b7399de3d5 Mon Sep 17 00:00:00 2001 From: Matěj Cepl Date: Tue, 22 Jun 2010 09:49:01 +0200 Subject: Make skipping over attachment.cgi work and more cleanup - improve regexp in main.js / skipThisPage - fix util.notification to not crash - remove non-ASCII characters from package.json --- lib/util.js | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'lib/util.js') diff --git a/lib/util.js b/lib/util.js index b832ac0..02fd476 100644 --- a/lib/util.js +++ b/lib/util.js @@ -62,12 +62,12 @@ exports.notification = function notification(msg) { if (typeof(msg) === "object") { body = msg.body; - } - if ("title" in msg) { - title = msg.title; - } - if ("icon" in msg) { - icon = msg.icon; + if ("title" in msg) { + title = msg.title; + } + if ("icon" in msg) { + icon = msg.icon; + } } try { var classObj = Cc["@mozilla.org/alerts-service;1"]; -- cgit