Skip to content

Commit bfb967a

Browse files
author
Vladimir Enchev
committed
http header values fixed for iOS as well
1 parent 79fb7e2 commit bfb967a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

http/http-request.ios.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ export function request(options: http.HttpRequestOptions): Promise<http.HttpResp
2828

2929
if (options.headers) {
3030
for (var header in options.headers) {
31-
urlRequest.setValueForHTTPHeaderField(options.headers[header], header);
31+
urlRequest.setValueForHTTPHeaderField(options.headers[header] + "", header);
3232
}
3333
}
3434

0 commit comments

Comments
 (0)