forked from GitHub/dbot
Fix [#286]
This commit is contained in:
parent
5f8bde0db9
commit
238e204d85
@ -77,7 +77,7 @@ var commands = function(dbot) {
|
||||
var needle = event.input[2];
|
||||
if(_.has(quotes, haystack)) {
|
||||
var matches = _.filter(quotes[haystack], function(quote) {
|
||||
return _.indexOf(quote, needle) != -1;
|
||||
return quote.indexOf(needle) != -1;
|
||||
}, this);
|
||||
|
||||
if(matches.length == 0) {
|
||||
|
Loading…
Reference in New Issue
Block a user