remove plugin.hook check

This commit is contained in:
Barış Soner Uşaklı
2017-07-12 19:44:35 -04:00
parent e6d0dde7b4
commit 0f5be5ae25
2 changed files with 4 additions and 15 deletions

View File

@@ -326,12 +326,8 @@ Topics.isLocked = function (tid, callback) {
};
Topics.search = function (tid, term, callback) {
if (plugins.hasListeners('filter:topic.search')) {
plugins.fireHook('filter:topic.search', {
tid: tid,
term: term,
}, callback);
} else {
callback(new Error('[[error:no-plugins-available]]'), []);
}
plugins.fireHook('filter:topic.search', {
tid: tid,
term: term,
}, callback);
};

View File

@@ -1505,13 +1505,6 @@ describe('Topic\'s', function () {
});
});
it('should error if no search plugin', function (done) {
socketTopics.search({ uid: adminUid }, { tid: topic.tid, term: 'test' }, function (err) {
assert.equal(err.message, '[[error:no-plugins-available]]');
done();
});
});
it('should return results', function (done) {
var plugins = require('../src/plugins');
plugins.registerHook('myTestPlugin', {