diff options
Diffstat (limited to 'lib')
-rw-r--r-- | lib/render-msg.js | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/render-msg.js b/lib/render-msg.js index 5411974..63489ff 100644 --- a/lib/render-msg.js +++ b/lib/render-msg.js @@ -141,7 +141,9 @@ RenderMsg.prototype.wrap = function (content, cb) { h('code', h('a.ssb-id', { href: this.toUrl(this.msg.key) + (this.hasFullLink && this.opts.full ? '?full' : '') - }, this.msg.key)), + }, this.msg.key, + this.msg.value.unbox ? '?unbox=' + this.msg.value.unbox : '' + )), channel ? [' ', h('a', {href: this.toUrl(channel)}, channel)] : '')), h('td.msg-right', this.actions()) ), h('tr', |