Skip to content

Commit

Permalink
Fix: bug receive actual data version version 0.6.6
Browse files Browse the repository at this point in the history
  • Loading branch information
lexich committed Oct 2, 2015
1 parent 285846b commit 05bd438
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion bower.json
@@ -1,6 +1,6 @@
{
"name": "redux-api",
"version": "0.6.5",
"version": "0.6.6",
"main": "dist/redux-api.min.js",
"dependencies": {}
}
2 changes: 1 addition & 1 deletion dist/redux-api.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/redux-api.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/redux-api.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/redux-api.min.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "redux-api",
"version": "0.6.5",
"version": "0.6.6",
"author": {
"name": "Efremov Alex",
"email": "lexich121@gmail.com",
Expand Down
2 changes: 1 addition & 1 deletion src/actionFn.js
Expand Up @@ -75,7 +75,7 @@ export default function actionFn(url, name, options, ACTIONS={}, meta={}) {
.then((data)=> {
dispatch({ type: actionSuccess, syncing: false, data });
each(meta.broadcast, (btype)=> dispatch({type: btype, data}));
pubsub.resolve(store);
pubsub.resolve(getState()[name]);
})
.catch((error)=> {
dispatch({ type: actionFail, syncing: false, error });
Expand Down

0 comments on commit 05bd438

Please sign in to comment.