We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 39e50b9 commit dc883fdCopy full SHA for dc883fd
src/preloadjs/utils/RequestUtils.js
@@ -150,9 +150,9 @@
150
}
151
152
if (idx != -1) {
153
- return src.slice(0, idx) + '?' + this._formatQueryString(data, query);
+ return src.slice(0, idx) + '?' + this.formatQueryString(data, query);
154
} else {
155
- return src + '?' + this._formatQueryString(data, query);
+ return src + '?' + this.formatQueryString(data, query);
156
157
};
158
0 commit comments