Skip to content

Commit

Permalink
Modify multipart upload!
Browse files Browse the repository at this point in the history
  • Loading branch information
eastkiki committed Mar 30, 2012
1 parent 9854622 commit 5ea1f32
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/needle.js
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ var Needle = {
this.generate_part(key, part, boundary, function(err, section){
if(err) return callback(err);
body += section;
--count || callback(null, body + '--' + boundary + '--');
--count || callback(null, body + '--' + boundary + '--\r\n');
});

}
Expand Down

0 comments on commit 5ea1f32

Please sign in to comment.