Skip to content

Commit 5af7af4

Browse files
committed
Fixed format issues
1 parent 649746a commit 5af7af4

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/adapters/http-multipart-mixed-boundary-adapter.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,8 @@ export class HttpMultipartMixedBoundaryAdapter implements IBatchHttpRequestAdapt
120120
status = parseInt(lineParts[1], 10);
121121
statusText = lineParts.slice(2).join(HttpMultipartMixedBoundaryAdapter.SPACE);
122122
} else {
123-
headers.append(lineParts[0].replace(":", HttpMultipartMixedBoundaryAdapter.EMPTY_STRING), header.substring(header.indexOf(HttpMultipartMixedBoundaryAdapter.SPACE)+1));
123+
headers.append(lineParts[0].replace(":", HttpMultipartMixedBoundaryAdapter.EMPTY_STRING),
124+
header.substring(header.indexOf(HttpMultipartMixedBoundaryAdapter.SPACE) + 1));
124125
}
125126
});
126127

0 commit comments

Comments
 (0)