Skip to content

Commit 663f6fe

Browse files
author
Kyle Swanson
committed
Trivial fix for incorrect pathname on windows, should change path.join eventually
1 parent a5ef36f commit 663f6fe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libs/url/builder.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ module.exports.buildURL = function(opts) {
6565
urlObject.pathname = path.join(
6666
[TRANSFORMATION_PARAMETER, transformationString].join(transformationUtils.getChainTransformDelimiter()),
6767
urlObject.pathname
68-
)
68+
).replace("\\", "/")
6969
}
7070
}
7171

0 commit comments

Comments
 (0)