diff options
author | cel <cel@f/6sQ6d2CMxRUhLpspgGIulDxDCwYD7DzFzPNr7u5AU=.ed25519> | 2017-05-29 11:15:40 -1000 |
---|---|---|
committer | cel <cel@f/6sQ6d2CMxRUhLpspgGIulDxDCwYD7DzFzPNr7u5AU=.ed25519> | 2017-05-29 11:15:40 -1000 |
commit | 31dc9d1e415444f27de5e99d48b1809e27be5a6c (patch) | |
tree | fbef28034458a724e4ade057cac6a5d795fd9bd8 | |
parent | b84197b91fdfcc86baab903d0ad393cbe5fbb3b2 (diff) | |
download | patchfoo-31dc9d1e415444f27de5e99d48b1809e27be5a6c.tar.gz patchfoo-31dc9d1e415444f27de5e99d48b1809e27be5a6c.zip |
Use title from about messages
-rw-r--r-- | lib/about.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/about.js b/lib/about.js index e94b7fc..4ad153b 100644 --- a/lib/about.js +++ b/lib/about.js @@ -96,6 +96,7 @@ About.prototype.get = function (dest, cb) { if (!c) return var about = aboutByFeed[author] || (aboutByFeed[author] = {}) if (c.name) about.name = c.name + if (c.title) about.title = c.title if (c.image) about.image = u.linkDest(c.image) if (c.description) about.description = c.description }, function (err) { |