Merge branch 'master' into piece-detail-mediaplayer

This commit is contained in:
vrde 2015-06-02 14:39:38 +02:00
commit 633f7f5b33
1 changed files with 2 additions and 2 deletions

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) {