This commit is contained in:
syuilo 2020-04-21 20:16:37 +09:00
parent 433c59f356
commit 66010c1ae8

View file

@ -43,7 +43,7 @@ export async function checkHitAntenna(antenna: Antenna, note: Note, noteUser: Us
if (note.text == null) return false;
const matched = antenna.keywords.some(keywords =>
keywords.every(keyword =>
keywords.filter(keyword => keyword !== '').every(keyword =>
antenna.caseSensitive
? note.text!.includes(keyword)
: note.text!.toLowerCase().includes(keyword.toLowerCase())
@ -56,7 +56,7 @@ export async function checkHitAntenna(antenna: Antenna, note: Note, noteUser: Us
if (note.text == null) return false;
const matched = antenna.excludeKeywords.some(keywords =>
keywords.every(keyword =>
keywords.filter(keyword => keyword !== '').every(keyword =>
antenna.caseSensitive
? note.text!.includes(keyword)
: note.text!.toLowerCase().includes(keyword.toLowerCase())