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

master
Thibaut Girka 2020-11-01 16:25:02 +01:00 committed by ThibG
parent 5a41704f89
commit b8e790c3c2
1 changed files with 1 additions and 1 deletions

View File

@ -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') {