Fix mistake
This commit is contained in:
parent
bef4d8dab8
commit
d85df27053
1 changed files with 1 additions and 1 deletions
|
@ -28,7 +28,7 @@ export const getStatus = createSelector([getStatusBase, getStatuses, getAccounts
|
|||
const getAccountTimelineIds = (state, id) => state.getIn(['timelines', 'accounts_timelines', id], Immutable.List());
|
||||
|
||||
const assembleStatus = (id, statuses, accounts) => {
|
||||
let status = statuses.get(id);
|
||||
let status = statuses.get(id, null);
|
||||
|
||||
if (status === null) {
|
||||
return null;
|
||||
|
|
Loading…
Reference in a new issue