Merge pull request #304 from ronniemb/master

esearch should call _esearch and return data to callback. Removed space ...
fork
Brian White 11 years ago
commit 37778d8747

@ -829,7 +829,7 @@ Connection.prototype._sort = function(which, sorts, criteria, cb) {
}; };
Connection.prototype.esearch = function(criteria, options, cb) { Connection.prototype.esearch = function(criteria, options, cb) {
this._search('UID ', criteria, options, cb); this._esearch('UID ', criteria, options, cb);
}; };
Connection.prototype._esearch = function(which, criteria, options, cb) { Connection.prototype._esearch = function(which, criteria, options, cb) {
@ -1097,7 +1097,7 @@ Connection.prototype._resUntagged = function(info) {
this._caps = info.text.map(function(v) { return v.toUpperCase(); }); this._caps = info.text.map(function(v) { return v.toUpperCase(); });
else if (type === 'preauth') else if (type === 'preauth')
this.state = 'authenticated'; this.state = 'authenticated';
else if (type === 'sort' || type === 'thread') else if (type === 'sort' || type === 'thread' || type === 'esearch')
this._curReq.cbargs.push(info.text); this._curReq.cbargs.push(info.text);
else if (type === 'search') { else if (type === 'search') {
if (info.text.results !== undefined) { if (info.text.results !== undefined) {

Loading…
Cancel
Save