diff options
Diffstat (limited to 'src/api')
| -rw-r--r-- | src/api/bot/core.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/api/bot/core.ts b/src/api/bot/core.ts index 4b8d244471..ddae6405f5 100644 --- a/src/api/bot/core.ts +++ b/src/api/bot/core.ts @@ -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; |