Skip to content

Commit

Permalink
fix _send invocation in post method
Browse files Browse the repository at this point in the history
  • Loading branch information
5im-0n authored and mscdex committed Apr 18, 2015
1 parent 5e1042e commit 01beea8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/nntp.js
Expand Up @@ -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);

Expand Down

0 comments on commit 01beea8

Please sign in to comment.