about summary refs log tree commit diff
path: root/app/assets/javascripts/components/reducers/timelines.jsx
diff options
context:
space:
mode:
authorEugen Rochko <eugen@zeonfederated.com>2016-10-18 01:31:03 +0200
committerEugen Rochko <eugen@zeonfederated.com>2016-10-18 01:31:03 +0200
commitea44d893832b67d9d144ca53125c9aff62f57575 (patch)
tree45f7107cc73987e71cbd2155aae99e70663c76c0 /app/assets/javascripts/components/reducers/timelines.jsx
parentdd02fc0ec4ba19a466228187b932412b7846d28d (diff)
More debugging
Diffstat (limited to 'app/assets/javascripts/components/reducers/timelines.jsx')
-rw-r--r--app/assets/javascripts/components/reducers/timelines.jsx2
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'));