From 6bda8d0c7e64ec9a3380a5f19789223cf6aaa6e1 Mon Sep 17 00:00:00 2001 From: syuilo Date: Mon, 13 Aug 2018 18:30:13 +0900 Subject: [PATCH] Fix bug --- src/modules/keyword/index.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/modules/keyword/index.ts b/src/modules/keyword/index.ts index fe94a96..9af374b 100644 --- a/src/modules/keyword/index.ts +++ b/src/modules/keyword/index.ts @@ -53,7 +53,9 @@ export default class KeywordModule implements IModule { if (msg) { msg.reply(text); } else { - this.ai.post(text); + this.ai.post({ + text: text + }); } }