Skip to content

Commit

Permalink
Fixing saga action queue (#73)
Browse files Browse the repository at this point in the history
Closes #72
  • Loading branch information
imartingraham authored and Raúl Gómez Acuña committed Jan 24, 2018
1 parent 083e74e commit 41b0ed6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sagas.js
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ function* handleConnectivityChange(
hasInternetAccess: boolean,
): Generator<*, *, *> {
yield put(connectionChange(hasInternetAccess));
const actionQueue = select(
const actionQueue = yield select(
(state: { network: NetworkState }) => state.network.actionQueue,
);

Expand Down

0 comments on commit 41b0ed6

Please sign in to comment.