mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-16 03:31:45 +08:00
Fix for failed url encoding techniques removed
This commit is contained in:
@ -23,7 +23,7 @@ export function request(options: http.HttpRequestOptions): Promise<http.HttpResp
|
||||
sessionConfig, null, queue);
|
||||
|
||||
var urlRequest = NSMutableURLRequest.requestWithURL(
|
||||
NSURL.URLWithString(options.url.replace("%", "%25")));
|
||||
NSURL.URLWithString(options.url));
|
||||
|
||||
urlRequest.HTTPMethod = types.isDefined(options.method) ? options.method : GET;
|
||||
|
||||
|
Reference in New Issue
Block a user