Fix content warning button displaying a link icon when no status card is set

This commit is contained in:
Thibaut Girka 2019-05-05 21:09:45 +02:00 committed by ThibG
parent 8383222026
commit 89d2859296
1 changed files with 3 additions and 3 deletions

View File

@ -112,7 +112,7 @@ export default class DetailedStatus extends ImmutablePureComponent {
return null; return null;
} }
let media = ''; let media = null;
let mediaIcon = null; let mediaIcon = null;
let applicationLink = ''; let applicationLink = '';
let reblogLink = ''; let reblogLink = '';
@ -163,8 +163,8 @@ export default class DetailedStatus extends ImmutablePureComponent {
); );
mediaIcon = 'picture-o'; mediaIcon = 'picture-o';
} }
} else { } else if (status.get('card')) {
media = <Card onOpenMedia={this.props.onOpenMedia} card={status.get('card', null)} />; media = <Card onOpenMedia={this.props.onOpenMedia} card={status.get('card')} />;
mediaIcon = 'link'; mediaIcon = 'link';
} }