mirror of
https://thingvellir.net/git/overte
synced 2025-03-27 23:52:03 +01:00
Fix boundary string format to not include curly braces
This commit is contained in:
parent
83a868d741
commit
70548976db
1 changed files with 1 additions and 1 deletions
|
@ -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 = "";
|
||||
|
|
Loading…
Reference in a new issue