Fix crash when viewing a profile with a filtered out pinned toot

master
Thibaut Girka 4 years ago committed by ThibG
parent 5a41704f89
commit b8e790c3c2
  1. 2
      app/javascript/flavours/glitch/containers/status_container.js

@ -55,7 +55,7 @@ const makeMapStateToProps = () => {
let account = undefined;
let prepend = undefined;
if (props.featured) {
if (props.featured && status) {
account = status.get('account');
prepend = 'featured';
} else if (reblogStatus !== null && typeof reblogStatus === 'object') {

Loading…
Cancel
Save