Skip to content

Commit

Permalink
error error 1 3 6
Browse files Browse the repository at this point in the history
  • Loading branch information
nikfrank committed Jun 15, 2017
1 parent 580c9a8 commit df90bc4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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/",
Expand Down
2 changes: 1 addition & 1 deletion src/network-handlers/http/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -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';

Expand Down

0 comments on commit df90bc4

Please sign in to comment.