diff --git a/webapp/components/post_view/components/post_list.jsx b/webapp/components/post_view/components/post_list.jsx index a1fd7a3171..fc532c3732 100644 --- a/webapp/components/post_view/components/post_list.jsx +++ b/webapp/components/post_view/components/post_list.jsx @@ -290,7 +290,7 @@ export default class PostList extends React.Component { } let status = ''; - if (this.props.statuses) { + if (this.props.statuses && profile) { status = this.props.statuses[profile.id] || 'offline'; }