diff --git a/package.json b/package.json index 5fcd3a8..4b99911 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "tahini", - "version": "1.3.5", + "version": "1.3.6", "description": "flexible vocabulary scoping for react", "scripts": { "build": "babel -d dist/ src/", diff --git a/src/network-handlers/http/index.js b/src/network-handlers/http/index.js index a6af74c..16bbeb1 100644 --- a/src/network-handlers/http/index.js +++ b/src/network-handlers/http/index.js @@ -48,7 +48,7 @@ class Fetcher { (response.status !== 200)? response.json().then(json=> this.err({status:response.status, body:json})): - response.json().then(json=> this.next(json)).catch(e=> this.err({err: e, json})) + response.json().then(json=> this.next(json)).catch(e=> this.err({err: e})) return 'done';