redux-rx
redux-rx copied to clipboard
does not work with redux 2+
according to the docs here :http://redux.js.org/docs/advanced/Middleware.html a middleware is a function with this signature:
const middleWare = store => next => action => { return next(action) }
the current implementation is missing the first function which receives store. so i was getting an error "next is not a function"
this fixes it
Yeah, I'm seeing this too. Can we get a release for this fix @acdlite?
@talarari The travis-ci test is failing.
This is actually already fixed in the current master branch, it's just not officially released yet.