aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lib/render-msg.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/render-msg.js b/lib/render-msg.js
index 26604c3..ad66c81 100644
--- a/lib/render-msg.js
+++ b/lib/render-msg.js
@@ -141,7 +141,7 @@ RenderMsg.prototype.wrap = function (content, cb) {
RenderMsg.prototype.wrapMini = function (content, cb) {
if (!this.shouldWrap) return cb(null, content)
var ts = this.value.timestamp
- var date = ts ? new Date(ts) : nulll
+ var date = ts ? new Date(ts) : null
var self = this
var channel = this.c.channel ? '#' + this.c.channel : ''
var done = multicb({pluck: 1, spread: true})