aboutsummaryrefslogtreecommitdiff
path: root/lib/render-msg.js
diff options
context:
space:
mode:
Diffstat (limited to 'lib/render-msg.js')
-rw-r--r--lib/render-msg.js7
1 files changed, 6 insertions, 1 deletions
diff --git a/lib/render-msg.js b/lib/render-msg.js
index 3fd845d..9aee35c 100644
--- a/lib/render-msg.js
+++ b/lib/render-msg.js
@@ -364,7 +364,12 @@ RenderMsg.prototype.contact = function (cb) {
self.c.blocking ? 'blocks' :
self.c.following === false ? 'unfollows' :
self.c.blocking === false ? 'unblocks' : '',
- ' ', a], cb)
+ ' ', a,
+ self.c.note ? [
+ ' from ',
+ h('code', self.c.note)
+ ] : '',
+ ], cb)
})
}