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 d056bc4..f7bd350 100644 --- a/lib/render-msg.js +++ b/lib/render-msg.js @@ -744,7 +744,7 @@ RenderMsg.prototype.about = function (cb) { 'ending at ', dateTime(this.c.endDateTime)) : '', this.c.location ? h('div', 'at ', h('span', {innerHTML: u.unwrapP(this.render.markdown(this.c.location))})) : '', - img ? h('a', {href: this.toUrl(img)}, + img ? this.c.image.remove ? '[image removed]' : h('a', {href: this.toUrl(img)}, h('img.ssb-avatar-image', { src: this.render.imageUrl(img), alt: ' ', |