aboutsummaryrefslogtreecommitdiffstats
path: root/lib/util.js
diff options
context:
space:
mode:
Diffstat (limited to 'lib/util.js')
-rw-r--r--lib/util.js12
1 files changed, 6 insertions, 6 deletions
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"];