diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2016-10-08 00:39:46 +0200 |
---|---|---|
committer | Eugen Rochko <eugen@zeonfederated.com> | 2016-10-08 00:39:46 +0200 |
commit | d85df27053f947eb072c031ed66e128ee58b2743 (patch) | |
tree | 35f192382d72de8e4adf91640a0ae4d89b4b6d3e /app | |
parent | bef4d8dab809ab3ee4e16726f51d9d4a9103aa93 (diff) |
Fix mistake
Diffstat (limited to 'app')
-rw-r--r-- | app/assets/javascripts/components/selectors/index.jsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/assets/javascripts/components/selectors/index.jsx b/app/assets/javascripts/components/selectors/index.jsx index a40cb15da..c1317b38e 100644 --- a/app/assets/javascripts/components/selectors/index.jsx +++ b/app/assets/javascripts/components/selectors/index.jsx @@ -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; |