diff options
Diffstat (limited to 'lib/render-msg.js')
-rw-r--r-- | lib/render-msg.js | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/lib/render-msg.js b/lib/render-msg.js index d2d2c9a..380d451 100644 --- a/lib/render-msg.js +++ b/lib/render-msg.js @@ -298,13 +298,11 @@ RenderMsg.prototype.title = function (cb) { if (self.c.type === 'post') cb(null, title(self.c.text)) else - cb(null, self.c.type + ':' + (self.c.title || title(self.c.text))) - } else if (self.c.type === 'git-repo') { - self.getAboutName(self.msg.key, cb) + cb(null, '%' + self.c.type + ': ' + (self.c.title || title(self.c.text))) } else { - self.getAboutName(self.msg.key, function (err, name) { + self.app.getAbout(self.msg.key, function (err, about) { if (err) return cb(err) - if (name) return cb(null, name) + if (about.name) return cb(null, about.name) self.message(false, function (err, el) { if (err) return cb(err) cb(null, '%' + title(h('div', el).textContent)) @@ -315,7 +313,7 @@ RenderMsg.prototype.title = function (cb) { RenderMsg.prototype.getAboutName = function (id, cb) { this.app.getAbout(id, function (err, about) { - cb(err, about && about.name) + cb(err, about && about.name || String(id).substr(1, 8) + '…') }) } |