@itentialopensource/adapter-utils 5.7.2 → 5.8.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/CHANGELOG.md +8 -0
- package/lib/restHandler.js +2 -0
- package/package.json +1 -1
- package/refs?service=git-upload-pack +0 -0
package/CHANGELOG.md
CHANGED
package/lib/restHandler.js
CHANGED
|
@@ -847,6 +847,7 @@ function buildRequestPath(entity, action, entitySchema, reqPath, uriPathVars, ur
|
|
|
847
847
|
|
|
848
848
|
// remove any double slashes that may be in the path - can happen if base path is / or ends in a /
|
|
849
849
|
uriPath = uriPath.replace(/\/\//g, '/');
|
|
850
|
+
uriPath = uriPath.replace(/=\//g, '=');
|
|
850
851
|
|
|
851
852
|
const result = {
|
|
852
853
|
path: uriPath
|
|
@@ -892,6 +893,7 @@ function buildRequestPath(entity, action, entitySchema, reqPath, uriPathVars, ur
|
|
|
892
893
|
|
|
893
894
|
// remove any double slashes that may be in the path - can happen if base path is / or ends in a /
|
|
894
895
|
uriPath = uriPath.replace(/\/\//g, '/');
|
|
896
|
+
uriPath = uriPath.replace(/=\//g, '=');
|
|
895
897
|
|
|
896
898
|
const result = {
|
|
897
899
|
path: uriPath
|
package/package.json
CHANGED
|
Binary file
|