diff options
Diffstat (limited to 'lib/render-msg.js')
-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 678a377..d01523e 100644 --- a/lib/render-msg.js +++ b/lib/render-msg.js @@ -1127,7 +1127,7 @@ RenderMsg.prototype.valueTable = function (val, depth, cb) { : typeof val.link === 'string' ? ( val.link[0] === '#' ? h('a', {href: self.toUrl('/channel/' + val.link.substr(1))}, val.link) - : self.linkValue(val.link, done()) + : self.linkValue(val, done()) ) : h('table.ssb-object', Object.keys(val).map(function (key) { if (key === 'text') { return h('tr', |