diff options
Diffstat (limited to 'app/assets/javascripts/components/reducers')
-rw-r--r-- | app/assets/javascripts/components/reducers/timelines.jsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/assets/javascripts/components/reducers/timelines.jsx b/app/assets/javascripts/components/reducers/timelines.jsx index ba4ac921d..b6a14a649 100644 --- a/app/assets/javascripts/components/reducers/timelines.jsx +++ b/app/assets/javascripts/components/reducers/timelines.jsx @@ -48,7 +48,7 @@ function normalizeStatus(state, status) { status = status.set('account', account.get('id')); // Separate reblog, repeat for reblog - let reblog = status.get('reblog'); + let reblog = status.get('reblog', null); if (reblog !== null) { status = status.set('reblog', reblog.get('id')); |