diff options
-rw-r--r-- | lib/serve.js | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/serve.js b/lib/serve.js index 9a2eeed..e865f75 100644 --- a/lib/serve.js +++ b/lib/serve.js @@ -3908,7 +3908,10 @@ Serve.prototype.composer = function (opts, cb) { ids[branch] = true }) links.forEach(function (link) { - if (ids[link.key]) reply[link.key] = link.value.author + if (ids[link.key]) { + var author = link.value.author + if (author !== myId) reply[link.key] = author + } }) if (Object.keys(reply).length > 0) content.reply = reply } |