This commit is contained in:
syuilo 2017-12-23 04:21:48 +09:00
parent 8376b10b3b
commit 67c269ddf5
1 changed files with 1 additions and 1 deletions

View File

@ -100,7 +100,7 @@ async function byNative(res, rej, me, text, userId, following, mute, reply, repo
push({
$and: text.split(' ').map(x => ({
text: x[0] == '-' ? {
$ne: new RegExp(escapeRegexp(x))
$ne: new RegExp(escapeRegexp(x.substr(1)))
} : new RegExp(escapeRegexp(x))
}))
});