We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bc15c68 commit ceb7e6fCopy full SHA for ceb7e6f
lib/mongoHandler.js
@@ -67,7 +67,7 @@ MongoStore._filterElementToMongoExpr = function(filterElement) {
67
">": { $gt: value },
68
"<": { $lt: value },
69
"~": new RegExp("^" + value + "$", "i"),
70
- ":": new RegExp(value)
+ ":": new RegExp(value, "i")
71
}[filterElement.operator];
72
return mongoExpr;
73
};
0 commit comments