fix callback not being passed for fetch() with uids

fork
Brian White 11 years ago
parent efbbadf047
commit 3cb9beedf3

@ -914,7 +914,7 @@ ImapConnection.prototype._sort = function(which, sorts, options, cb) {
};
ImapConnection.prototype.fetch = function(uids, options, what, cb) {
return this._fetch('UID ', uids, options, what);
return this._fetch('UID ', uids, options, what, cb);
};
ImapConnection.prototype._fetch = function(which, uids, options, what, cb) {

Loading…
Cancel
Save