Skip to content

Commit 509e74b

Browse files
committed
Fixed handling of 'forceTrailingSlash' option.
1 parent 1ec8528 commit 509e74b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ dsHttpAdapterPrototype.HTTP = function (config) {
7373
var _this = this;
7474
var start = new Date();
7575
config = deepMixIn(config, _this.defaults.httpConfig);
76-
if (_this.defaults.forceTrailingSlash && config.url[config.url.length] !== '/') {
76+
if (_this.defaults.forceTrailingSlash && config.url[config.url.length - 1] !== '/') {
7777
config.url += '/';
7878
}
7979

0 commit comments

Comments
 (0)