Fix boundary string format to not include curly braces

This commit is contained in:
David Rowe 2014-08-07 15:27:30 -07:00
parent 83a868d741
commit 70548976db

View file

@ -169,7 +169,7 @@ var httpMultiPart = (function () {
crlf;
function clear() {
boundaryString = "--boundary_" + Uuid.generate() + "=";
boundaryString = "--boundary_" + String(Uuid.generate()).slice(1, 36) + "=";
parts = [];
byteLength = 0;
crlf = "";