From aa894b5b1a6a239ded069716d6601ab1c5941a90 Mon Sep 17 00:00:00 2001 From: s2 Date: Sat, 18 Apr 2015 13:36:11 +0200 Subject: [PATCH] fix _send invocation in post method --- lib/nntp.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/nntp.js b/lib/nntp.js index 939afab..577ea39 100644 --- a/lib/nntp.js +++ b/lib/nntp.js @@ -611,7 +611,7 @@ NNTP.prototype.groupsDesc = function(search, cb) { NNTP.prototype.post = function(msg, cb) { var self = this, composing = true; - this._send('POST', function reentry(err, code, r, type) { + this._send('POST', undefined, function reentry(err, code, r, type) { if (err || !composing) return cb(err);