Bugfixes for plugin installer

This commit is contained in:
Egil Moeller 2012-03-21 19:28:39 +01:00
parent 7304a9ef3f
commit 1ca12b24e6
2 changed files with 5 additions and 5 deletions

View file

@ -64,7 +64,7 @@ exports.search = function(pattern, cb) {
if (er) return cb(er);
var res = {};
for (key in data) {
if (/*key.indexOf(plugins.prefix) == 0 &&*/ key.indexOf(pattern) != -1)
if (key.indexOf(plugins.prefix) == 0 && key.indexOf(pattern) != -1)
res[key] = data[key];
}
cb(null, {results:res});