backendless 6.3.15 → 6.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/backendless.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/*
|
|
2
2
|
* ********************************************************************************************************************
|
|
3
|
-
* Backendless SDK for JavaScript. Version: 6.
|
|
3
|
+
* Backendless SDK for JavaScript. Version: 6.4.0
|
|
4
4
|
*
|
|
5
5
|
* Copyright 2012-2022 BACKENDLESS.COM. All Rights Reserved.
|
|
6
6
|
*
|
|
@@ -1254,7 +1254,7 @@ var sendNodeAPIRequest = function sendNodeAPIRequest(path, method, headers, body
|
|
|
1254
1254
|
var options = {
|
|
1255
1255
|
host: u.hostname,
|
|
1256
1256
|
port: u.port || (https ? 443 : 80),
|
|
1257
|
-
path: u.
|
|
1257
|
+
path: encodeURI(decodeURI(u.pathname)) + (u.search || ''),
|
|
1258
1258
|
method: method,
|
|
1259
1259
|
headers: headers,
|
|
1260
1260
|
timeout: timeout
|