mirror of
https://github.com/mastodon/mastodon.git
synced 2024-08-20 21:08:15 -07:00
Fixed picture in picture compatibility error in WebUI when status is deleted
This commit is contained in:
parent
8b8c6726ce
commit
f003b7d9d8
1 changed files with 7 additions and 0 deletions
|
@ -121,6 +121,13 @@ class Footer extends ImmutablePureComponent {
|
|||
render () {
|
||||
const { status, intl, withOpenButton } = this.props;
|
||||
|
||||
if (status == null) {
|
||||
return (
|
||||
<div className='picture-in-picture__footer'>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
const publicStatus = ['public', 'unlisted'].includes(status.get('visibility'));
|
||||
const reblogPrivate = status.getIn(['account', 'id']) === me && status.get('visibility') === 'private';
|
||||
|
||||
|
|
Loading…
Reference in a new issue