Removes spurious line break in APPEND

fork
Andrew Jessup 12 years ago
parent 85ac886d00
commit 7981e3e0e5

@ -648,7 +648,7 @@ ImapConnection.prototype.append = function(data, options, cb) {
}
cmd += ' {';
cmd += (Buffer.isBuffer(data) ? data.length : Buffer.byteLength(data));
cmd += '}\r\n';
cmd += '}';
var self = this, step = 1;
this._send(cmd, function(err) {
if (err || step++ === 2)

Loading…
Cancel
Save