Improve readability

This commit is contained in:
syuilo 2017-11-11 01:15:11 +09:00
parent f14fbfa3b6
commit f3dd5da931
2 changed files with 7 additions and 7 deletions

View file

@ -313,7 +313,7 @@ class TlContext extends Context {
this.emit('updated');
const text = tl
.map(post => post.user.name + ': ' + getPostSummary(post))
.map(post => `${post.user.name}\n「${getPostSummary(post)}`)
.join('\n-----\n');
return text;