diff options
author | cel <cel@f/6sQ6d2CMxRUhLpspgGIulDxDCwYD7DzFzPNr7u5AU=.ed25519> | 2017-03-13 22:08:26 -0400 |
---|---|---|
committer | cel <cel@f/6sQ6d2CMxRUhLpspgGIulDxDCwYD7DzFzPNr7u5AU=.ed25519> | 2017-03-13 22:11:10 -0400 |
commit | 517c4befd8ab959697f3f6474acbaf210461fabb (patch) | |
tree | e527d980e9b99018f365c16f4b32712690f8e232 | |
parent | 34982291bc2e6ecdd54fcc74d09d16f6e0929db0 (diff) | |
download | patchfoo-517c4befd8ab959697f3f6474acbaf210461fabb.tar.gz patchfoo-517c4befd8ab959697f3f6474acbaf210461fabb.zip |
update ssb-mentions for detecting bare feed names
-rw-r--r-- | lib/serve.js | 4 | ||||
-rw-r--r-- | package.json | 2 |
2 files changed, 3 insertions, 3 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) diff --git a/package.json b/package.json index f5029cb..d52ebae 100644 --- a/package.json +++ b/package.json @@ -20,7 +20,7 @@ "pull-stream": "^3.5.0", "ssb-avatar": "^0.2.0", "ssb-marked": "^0.6.0", - "ssb-mentions": "^0.1.0", + "ssb-mentions": "^0.2.0", "ssb-sort": "^1.0.0", "stream-to-pull-stream": "^1.7.2" }, |