From ea44d893832b67d9d144ca53125c9aff62f57575 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Tue, 18 Oct 2016 01:31:03 +0200 Subject: More debugging --- app/assets/javascripts/components/reducers/timelines.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'app/assets/javascripts/components/reducers/timelines.jsx') 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')); -- cgit