Skip to content

Commit dc883fd

Browse files
author
Lanny McNie
committed
Updated classes from PreloadJS (RequestUtils fix)
1 parent 39e50b9 commit dc883fd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/preloadjs/utils/RequestUtils.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -150,9 +150,9 @@
150150
}
151151

152152
if (idx != -1) {
153-
return src.slice(0, idx) + '?' + this._formatQueryString(data, query);
153+
return src.slice(0, idx) + '?' + this.formatQueryString(data, query);
154154
} else {
155-
return src + '?' + this._formatQueryString(data, query);
155+
return src + '?' + this.formatQueryString(data, query);
156156
}
157157
};
158158

0 commit comments

Comments
 (0)