diff options
-rw-r--r-- | lib/render-msg.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/render-msg.js b/lib/render-msg.js index c39825d..021d817 100644 --- a/lib/render-msg.js +++ b/lib/render-msg.js @@ -176,7 +176,7 @@ RenderMsg.prototype.wrapMini = function (content, cb) { this.recpsLine(done()), channel ? [h('a', {href: this.toUrl(channel)}, channel), ' '] : ''), h('td.msg-main', - this.date ? [h('a.ssb-timestamp', { + this.date && !this.serve.noMsgTime ? [h('a.ssb-timestamp', { title: this.date.toLocaleString(), href: this.msg.key ? this.toUrl(this.msg.key) : undefined }, htime(this.date)), ' '] : '', |