diff options
-rw-r--r-- | lib/render-msg.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/render-msg.js b/lib/render-msg.js index 3764109..2bd98f5 100644 --- a/lib/render-msg.js +++ b/lib/render-msg.js @@ -371,7 +371,7 @@ RenderMsg.prototype.about = function (cb) { {innerHTML: this.render.markdown(this.c.description)}) : '', this.c.title ? h('h3', this.c.title) : '', this.c.attendee ? h('div', - this.link1(this.c.attendee.id, done()), + this.link1(this.c.attendee.link, done()), this.c.attendee.remove ? ' is not attending' : ' is attending' ) : '', this.c.location ? h('div', 'at ', this.c.location) : '', |