about summary refs log tree commit diff
path: root/app/javascript/mastodon/reducers/reports.js
diff options
context:
space:
mode:
authorYamagishi Kazutoshi <ykzts@desire.sh>2017-09-09 20:42:48 +0900
committerEugen Rochko <eugen@zeonfederated.com>2017-09-09 13:42:48 +0200
commitc9d04f1c39dc95a54d058eaed794c2fcb9e62b6b (patch)
tree543896ff33120bb40a1e4889a2d47e410afd2bd5 /app/javascript/mastodon/reducers/reports.js
parent9e15eeec63b36f147700303961ad5ef207b81986 (diff)
Fix second report (regression from 3b81baaaaf51ff1c70fb1f865eef07fdb33a5950) (#4863)
Diffstat (limited to 'app/javascript/mastodon/reducers/reports.js')
-rw-r--r--app/javascript/mastodon/reducers/reports.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/javascript/mastodon/reducers/reports.js b/app/javascript/mastodon/reducers/reports.js
index 283c5b6f5..a08bbec38 100644
--- a/app/javascript/mastodon/reducers/reports.js
+++ b/app/javascript/mastodon/reducers/reports.js
@@ -28,7 +28,7 @@ export default function reports(state = initialState, action) {
       if (state.getIn(['new', 'account_id']) !== action.account.get('id')) {
         map.setIn(['new', 'status_ids'], action.status ? ImmutableSet([action.status.getIn(['reblog', 'id'], action.status.get('id'))]) : ImmutableSet());
         map.setIn(['new', 'comment'], '');
-      } else {
+      } else if (action.status) {
         map.updateIn(['new', 'status_ids'], ImmutableSet(), set => set.add(action.status.getIn(['reblog', 'id'], action.status.get('id'))));
       }
     });