This commit is contained in:
syuilo 2017-12-23 04:26:37 +09:00
parent 3e343814e3
commit 020ce794af
1 changed files with 2 additions and 1 deletions

View File

@ -99,8 +99,9 @@ async function byNative(res, rej, me, text, userId, following, mute, reply, repo
if (text) {
push({
$and: text.split(' ').map(x => ({
// キーワードが-で始まる場合そのキーワードを除外する
text: x[0] == '-' ? {
$ne: new RegExp(escapeRegexp(x.substr(1)))
$not: new RegExp(escapeRegexp(x.substr(1)))
} : new RegExp(escapeRegexp(x))
}))
});