We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 663f6fe commit 14ff14eCopy full SHA for 14ff14e
libs/url/builder.js
@@ -65,6 +65,8 @@ module.exports.buildURL = function(opts) {
65
urlObject.pathname = path.join(
66
[TRANSFORMATION_PARAMETER, transformationString].join(transformationUtils.getChainTransformDelimiter()),
67
urlObject.pathname
68
+ // Fix for Windows pathnames having backslashes instead of forward slashes.
69
+ // TODO: Replace path.join with a different library.
70
).replace("\\", "/")
71
}
72
0 commit comments