1
0
mirror of https://github.com/ascribe/onion.git synced 2024-11-15 01:25:17 +01:00

Fix fetch

This commit is contained in:
vrde 2015-06-02 14:33:00 +02:00
parent 88fe43b3e2
commit 842575a3cd

View File

@ -85,8 +85,8 @@ class Fetch {
get(url, params) {
let paramsCopy = this._merge(params);
let newUrl = this.prepareUrl(url, params);
return this.request('get', newUrl, true);
let newUrl = this.prepareUrl(url, params, true);
return this.request('get', newUrl);
}
post(url, params) {