diff options
Diffstat (limited to 'lib/serve.js')
-rw-r--r-- | lib/serve.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/serve.js b/lib/serve.js index 62aa86f..a33dd71 100644 --- a/lib/serve.js +++ b/lib/serve.js @@ -907,7 +907,7 @@ Serve.prototype.composer = function (opts, cb) { type: 'post', text: data.text, } - var mentions = ssbMentions(data.text) + var mentions = ssbMentions(data.text, {bareFeedNames: true}) if (mentions.length) { content.mentions = mentions.filter(function (mention) { var blob = blobs[mention.link] @@ -917,7 +917,7 @@ Serve.prototype.composer = function (opts, cb) { if (blob.type && blob.type !== 'application/octet-stream') mention.type = blob.type } else if (mention.link === '@') { - // bare mention + // bare feed name var name = mention.name var fullName = mention.link + name var id = formNames[name] || self.app.getReverseNameSync(fullName) |