Skip to content
Snippets Groups Projects
Commit f5e11278 authored by Eugen's avatar Eugen Committed by GitHub
Browse files

Forgotten return

parent a541e937
No related branches found
No related tags found
No related merge requests found
......@@ -9,7 +9,7 @@ export default function statuses(state = initialState, action) {
return state.set(action.timeline, Immutable.fromJS(action.statuses));
case ADD_STATUS:
return state.update(action.timeline, function (list) {
list.unshift(Immutable.fromJS(action.status));
return list.unshift(Immutable.fromJS(action.status));
});
default:
return state;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment