If I do the following actions, ie. FETCH_LIST and in the same time another FETCH_LIST, the reducer in the second action recovers the previousAction, in the example: the first FETCH_LIST_SUCCESS information.
The sequence is: 1. FETCH_LIST, 2. FETCH_LIST, 3. FETCH_LIST_SUCCESS, 4. FETCH_LIST_SUCCESS and the issue is with the 4. FETCH_LIST_SUCCESS that retrieves meta.previousAction from 3.FETCH_LIST_SUCCESS and no from 2. FETCH_LIST.
If I do the following actions, ie. FETCH_LIST and in the same time another FETCH_LIST, the reducer in the second action recovers the previousAction, in the example: the first FETCH_LIST_SUCCESS information. The sequence is: 1. FETCH_LIST, 2. FETCH_LIST, 3. FETCH_LIST_SUCCESS, 4. FETCH_LIST_SUCCESS and the issue is with the 4. FETCH_LIST_SUCCESS that retrieves meta.previousAction from 3.FETCH_LIST_SUCCESS and no from 2. FETCH_LIST.