From 3cb9beedf3bafd78e23343361af46ced6e5e5e57 Mon Sep 17 00:00:00 2001 From: Brian White Date: Mon, 7 Jan 2013 00:39:48 -0500 Subject: [PATCH] fix callback not being passed for fetch() with uids --- lib/imap.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/imap.js b/lib/imap.js index 323d9d5..59b87b9 100644 --- a/lib/imap.js +++ b/lib/imap.js @@ -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) {