Merge pull request #188 from mikemee/master

fix for append with empty flags array
fork
Brian White 11 years ago
commit acbe2913f3

@ -867,7 +867,8 @@ ImapConnection.prototype.append = function(data, options, cb) {
if (options.flags) {
if (!Array.isArray(options.flags))
options.flags = [options.flags];
cmd += " (\\" + options.flags.join(' \\') + ")";
if (options.flags.length > 0)
cmd += " (\\" + options.flags.join(' \\') + ")";
}
if (options.date) {
if (!isDate(options.date))

Loading…
Cancel
Save