From 643f3a3d58116b5037758c8300dba63fd5e8ca23 Mon Sep 17 00:00:00 2001 From: syuilo Date: Sat, 2 Feb 2019 00:08:08 +0900 Subject: [PATCH] =?UTF-8?q?CW=E4=BB=98=E3=81=8D=E3=81=AE=E6=8A=95=E7=A8=BF?= =?UTF-8?q?=E3=81=8B=E3=82=89=E3=81=AF=E5=AD=A6=E7=BF=92=E3=81=97=E3=81=AA?= =?UTF-8?q?=E3=81=84=E3=82=88=E3=81=86=E3=81=AB?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/modules/keyword/index.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/modules/keyword/index.ts b/src/modules/keyword/index.ts index a37277d..2bf422e 100644 --- a/src/modules/keyword/index.ts +++ b/src/modules/keyword/index.ts @@ -43,7 +43,10 @@ export default class extends Module { limit: 30 }); - const interestedNotes = tl.filter(note => note.userId !== this.ai.account.id && note.text != null); + const interestedNotes = tl.filter(note => + note.userId !== this.ai.account.id && + note.text != null && + note.cw == null); let keywords: string[][] = [];